net.properties 3.5 KB

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