net.properties 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. # ========================================================================
  2. # Licensed Materials - Property of IBM
  3. # "Restricted Materials of IBM"
  4. #
  5. # IBM SDK, Java(tm) Technology Edition, v8
  6. # (C) Copyright IBM Corp. 2000, 2014. All Rights Reserved
  7. #
  8. # US Government Users Restricted Rights - Use, duplication or disclosure
  9. # restricted by GSA ADP Schedule Contract with IBM Corp.
  10. # ========================================================================
  11. # Default Networking Configuration File
  12. #
  13. # This file may contain default values for the networking system properties.
  14. # These values are only used when the system properties are not specified
  15. # on the command line or set programatically.
  16. # For now, only the various proxy settings can be configured here.
  17. ############################################################
  18. # Whether or not the DefaultProxySelector will default to System Proxy
  19. # settings when they do exist.
  20. # Set it to 'true' to enable this feature and check for platform
  21. # specific proxy settings
  22. # Note that the system properties that do explicitely set proxies
  23. # (like http.proxyHost) do take precedence over the system settings
  24. # even if java.net.useSystemProxies is set to true.
  25. java.net.useSystemProxies=false
  26. #------------------------------------------------------------------------
  27. # Proxy configuration for the various protocol handlers.
  28. # DO NOT uncomment these lines if you have set java.net.useSystemProxies
  29. # to true as the protocol specific properties will take precedence over
  30. # system settings.
  31. #------------------------------------------------------------------------
  32. # HTTP Proxy settings. proxyHost is the name of the proxy server
  33. # (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
  34. # value is 80) and nonProxyHosts is a '|' separated list of hostnames which
  35. # should be accessed directly, ignoring the proxy server (default value is
  36. # localhost & 127.0.0.1).
  37. #
  38. # http.proxyHost=
  39. # http.proxyPort=80
  40. http.nonProxyHosts=localhost|127.*|[::1]
  41. #
  42. # HTTPS Proxy Settings. proxyHost is the name of the proxy server
  43. # (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
  44. # value is 443). The HTTPS protocol handlers uses the http nonProxyHosts list.
  45. #
  46. # https.proxyHost=
  47. # https.proxyPort=443
  48. #
  49. # FTP Proxy settings. proxyHost is the name of the proxy server
  50. # (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
  51. # value is 80) and nonProxyHosts is a '|' separated list of hostnames which
  52. # should be accessed directly, ignoring the proxy server (default value is
  53. # localhost & 127.0.0.1).
  54. #
  55. # ftp.proxyHost=
  56. # ftp.proxyPort=80
  57. ftp.nonProxyHosts=localhost|127.*|[::1]
  58. #
  59. # Gopher Proxy settings. proxyHost is the name of the proxy server
  60. # (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
  61. # value is 80)
  62. #
  63. # gopher.proxyHost=
  64. # gopher.proxyPort=80
  65. #
  66. # Socks proxy settings. socksProxyHost is the name of the proxy server
  67. # (e.g. socks.domain.com), socksProxyPort is the port number to use
  68. # (default value is 1080)
  69. #
  70. # socksProxyHost=
  71. # socksProxyPort=1080
  72. #
  73. # HTTP Keep Alive settings. remainingData is the maximum amount of data
  74. # in kilobytes that will be cleaned off the underlying socket so that it
  75. # can be reused (default value is 512K), queuedConnections is the maximum
  76. # number of Keep Alive connections to be on the queue for clean up (default
  77. # value is 10).
  78. # http.KeepAlive.remainingData=512
  79. # http.KeepAlive.queuedConnections=10