Table of Contents

Manage Proxy Settings

Note

This article describes how to configure a PhenixId server to use a custom proxy when using HTTP(S) for out bound communications.

The reader of this PSD should have some basic knowledge about PhenixID Server.

System requirements

  • PhenixID Server installed.
  • Information about the proxy solution used.

Overview

The instructions in this document will add information for the proxy settings of the network, where PhenixID server is installed.

Configuration

See the documentation about extra VM options for how to add extra VM options. This is an example of what proxy settings that can be configured:

# Explicitly set HTTP/HTTPS proxy servers:
-Dhttp.proxyHost=192.168.0.55
-Dhttp.proxyPort=8080
-Dhttps.proxyHost=192.168.0.55
-Dhttps.proxyPort=8080

# Credentials for proxy servers:
-Dhttp.proxyUser=user
-Dhttp.proxyPassword=password

# Traffic to exclude from the configured proxy:
-Dhttp.nonProxyHosts=my-server|other-site|*.foo.bar
-Dhttps.nonProxyHosts=my-server|other-site|*.foo.bar

# Only on Windows: Use system proxy settings:
-Djava.net.useSystemProxies=true