Versions Compared

Key

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

...

To increase the maximum number of connections that can be created at a time (default is 100):

Code Block
languagejava
jcc.http_client_max_connections = 300

To set the TCP connection timeout for an outbound connection (in seconds, the default is 60, zero is an infinite timeout):

Code Block
languagejava
jcc.http_client_tcp_connection_timeout = 120

...

The proxy settings are configured per the standard JRE settings. These are displayed in the Node Proxies tab of your Snaplex in SnapLogic Manager:

paste-code-macro
jcc.http.proxyHost = myproxy.example.com
jcc.http.proxyPort = 3128
jcc.http.nonProxyHosts = localhost|127.*|[::1]|MYHOSTNAME|*.example.com
jcc.https.proxyHost = myproxy.example.com
jcc.https.proxyPort = 3128
jcc.https.nonProxyHosts = localhost|127.*|[::1]|MYHOSTNAME|*.example.com
jcc.http.proxyUser=proxyuser
jcc.http.proxyPassword=proxypass

Reverse Proxy Configuration

...