Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Proxy Properties

Property

Description

http.proxyHost

The proxy host that routes HTTP traffic

http.proxyPort

The proxy port for routing HTTP traffic. Default value: 80

http.proxyUser

The username, if Basic Authentication is required for proxy handling HTTP traffic

http.proxyPassword

The password, if Basic authentication is required for proxy handling HTTP traffic. The password can be plain-text or encrypted using the mzsh encryptpassword <password> command.

https.proxyHost

The proxy host that routes HTTPS traffic

https.proxyPort

The proxy port for routing HTTPS traffic. Default value: 443

https.proxyUser

The username, if Basic Authentication is required for proxy handling HTTPS traffic

https.proxyPassword

The password, if Basic authentication is required for proxy handling HTTPS traffic. The password can be plain-text or encrypted using the mzsh encryptpassword <password> command.

http.nonProxyHosts

Indicates the hosts that should be accessed without going through the proxy. Typically, this defines internal hosts. The value of this property is a list of hosts, separated by the '|' character. Additionally, the wildcard character '*' can be used for pattern matching.

For example, http.nonProxyHosts="*.foo.com|localhost" will indicate that every host in the http://foo.com domain and the localhost should be accessed directly even when a proxy server is already specified.

...