Skip To Content

Configure your portal to use a forward proxy server

A forward proxy server is a computer on your LAN that allows you to connect outside the network without compromising the security of your internal network. Use of a forward proxy server is common in perimeter networks (also known as demilitarized zones [DMZ] or screened subnets) to protect the identity of internal machines. If your organization uses a forward proxy server to connect externally, you can configure your portal to use your forward proxy server.

  1. Open a web browser and sign in to the Portal Administrator Directory as an administrator of your organization. The URL is formatted as https://portal.domain.com:7443/arcgis/portaladmin.
  2. Click System > Properties > Update Properties.
  3. On the Update System Properties dialog box, insert the following JSON code, substituting your forward proxy server information:
    {
        "httpProxyHost": "forwardproxy.domain.com",
        "httpsProxyHost": "forwardproxy.domain.com",
        "httpProxyPort": 8888,
        "httpsProxyPort": 8888,
        "nonProxyHosts": "portal.domain.com"
    }

    If your forward proxy requires authentication, the username and password need to be included in the JSON string:

    {
        "httpProxyHost": "forwardproxy.domain.com",
        "httpsProxyHost": "forwardproxy.domain.com",
        "httpProxyPort": 8888,
        "httpsProxyPort": 8888,
        "httpProxyUser": "username",
        "httpsProxyUser": "username",
        "httpProxyPassword": "password",
        "httpsProxyPassword": "password",
        "nonProxyHosts": "portal.domain.com"
    }
    • Each of the above properties should always be included, even if your forward proxy server is configured to exclusively use HTTPS.

    • The nonProxyHosts property should always contain the machine name where your portal is installed. If you want to federate ArcGIS Server with your portal, you should also include the name of the machine where ArcGIS Server is installed. Machine and domain items are separated using a pipe (|), for example:

      "nonProxyHosts": "portal.domain.com|server.domain.com|*.domain.com"

  4. Click Update Properties.

Portal for ArcGIS is now configured to use your forward proxy server.

A forward proxy server can either tunnel encrypted traffic, or decrypt and then reencrypt traffic. If Portal for ArcGIS does not appear to be working correctly with the forward proxy, it's likely the proxy server is decrypting and reencrypting traffic. A proxy server that decrypts traffic will use a root certifying authority to present certificates. Your portal will not trust the root certifying authority by default, so you must import the certificate into the portal. See Configuring the portal to trust certificates from your certifying authority for details.