Documentation Center

Configuring a Proxy

You can use a proxy for capturing a URL by adding a <Proxy> element inside of the <Identity> or <DefaultIdentity> node in the cd_archivemanager_conf.xml. The <Proxy> element has mandatory elements host and port.

About this task

For proxy servers that require a username and password, you need to add a <Credentials> node inside of the <Proxy> node and specify the attributes username and password.

Procedure

  1. Open your Archive Manager cd_archivemanager_conf.xml configuration file, by default located in your Tridion Installation \config directory, in a text editor:
  2. Add a <Proxy> element. The following is an example of how to configure a proxy that uses credentials:
    <Identity Name="profile-1">
        <Proxy host="myproxy.com" port="8888">
          <Credentials username="userproxy" password="passproxy" />
        </Proxy>
    </Identity
  3. Save and close cd_archivemanager_conf.xml.