Configuring the Percussion CMS to Support a Network Proxy

If your network utilizes a proxy for all outbound traffic, you can configure CM1 to communicate through the proxy server.  Please note that you will need to configure your proxy server to allow outbound traffic from CM1. This topic is to cover what you must change in CM1. 

1. Open the file <install-dir>/rxconfig/Proxy/proxy-config.xml

2. Enter the proxy host name, port, userID and password for both HTTP and HTTPS. 

Configuration Example: 

<ProxyConfigurations>
    <ProxyConfig>
        <host></host>
        <port></port>
        <user></user>
        <password encrypted="true"></password>
        <protocols>
            <protocol>HTTP</protocol>
         </protocols>
    </ProxyConfig>
    
    <ProxyConfig>
        <host></host>
        <port></port>
        <user></user>
        <password encrypted="true"></password>
        <protocols>
            <protocol>HTTPS</protocol>
        </protocols>
    </ProxyConfig>
</ProxyConfigurations>