0N/A############################################################
0N/A# Default Networking Configuration File
0N/A#
0N/A# This file may contain default values for the networking system properties.
0N/A# These values are only used when the system properties are not specified
0N/A# on the command line or set programatically.
0N/A# For now, only the various proxy settings can be configured here.
0N/A############################################################
0N/A
0N/A# Whether or not the DefaultProxySelector will default to System Proxy
0N/A# settings when they do exist.
0N/A# Set it to 'true' to enable this feature and check for platform
0N/A# specific proxy settings
0N/A# Note that the system properties that do explicitely set proxies
0N/A# (like http.proxyHost) do take precedence over the system settings
0N/A# even if java.net.useSystemProxies is set to true.
0N/A
0N/Ajava.net.useSystemProxies=false
0N/A
0N/A#------------------------------------------------------------------------
0N/A# Proxy configuration for the various protocol handlers.
0N/A# DO NOT uncomment these lines if you have set java.net.useSystemProxies
0N/A# to true as the protocol specific properties will take precedence over
0N/A# system settings.
0N/A#------------------------------------------------------------------------
0N/A
0N/A# HTTP Proxy settings. proxyHost is the name of the proxy server
0N/A# (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
0N/A# value is 80) and nonProxyHosts is a '|' separated list of hostnames which
0N/A# should be accessed directly, ignoring the proxy server (default value is
0N/A# localhost & 127.0.0.1).
0N/A#
0N/A# http.proxyHost=
0N/A# http.proxyPort=80
1666N/Ahttp.nonProxyHosts=localhost|127.*|[::1]
0N/A#
0N/A# HTTPS Proxy Settings. proxyHost is the name of the proxy server
0N/A# (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
0N/A# value is 443). The HTTPS protocol handlers uses the http nonProxyHosts list.
0N/A#
0N/A# https.proxyHost=
0N/A# https.proxyPort=443
0N/A#
0N/A# FTP Proxy settings. proxyHost is the name of the proxy server
0N/A# (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
0N/A# value is 80) and nonProxyHosts is a '|' separated list of hostnames which
0N/A# should be accessed directly, ignoring the proxy server (default value is
0N/A# localhost & 127.0.0.1).
0N/A#
0N/A# ftp.proxyHost=
0N/A# ftp.proxyPort=80
1666N/Aftp.nonProxyHosts=localhost|127.*|[::1]
0N/A#
0N/A# Gopher Proxy settings. proxyHost is the name of the proxy server
0N/A# (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
0N/A# value is 80)
0N/A#
0N/A# gopher.proxyHost=
0N/A# gopher.proxyPort=80
0N/A#
0N/A# Socks proxy settings. socksProxyHost is the name of the proxy server
0N/A# (e.g. socks.domain.com), socksProxyPort is the port number to use
0N/A# (default value is 1080)
0N/A#
0N/A# socksProxyHost=
0N/A# socksProxyPort=1080
0N/A#
0N/A# HTTP Keep Alive settings. remainingData is the maximum amount of data
0N/A# in kilobytes that will be cleaned off the underlying socket so that it
0N/A# can be reused (default value is 512K), queuedConnections is the maximum
0N/A# number of Keep Alive connections to be on the queue for clean up (default
0N/A# value is 10).
0N/A# http.KeepAlive.remainingData=512
0N/A# http.KeepAlive.queuedConnections=10