Skip to content

Instantly share code, notes, and snippets.

@ifduyue
Last active January 6, 2019 07:28
Show Gist options
  • Save ifduyue/72960f07be9a5ab66f9d65fda25a6ce9 to your computer and use it in GitHub Desktop.
Save ifduyue/72960f07be9a5ab66f9d65fda25a6ce9 to your computer and use it in GitHub Desktop.
# This are the proxy settings we use for activator
-Dhttp.proxyHost=127.0.0.1
-Dhttp.proxyPort=1087
-Dhttp.nonProxyHosts="localhost|127.0.0.1"
-Dhttps.proxyHost=127.0.0.1
-Dhttps.proxyPort=1087
-Dhttps.nonProxyHosts="localhost|127.0.0.1"
# These are commented out, but if you need to use authentication for your proxy, please fill these out.
#-Dhttp.proxyUser=PUT YOUR PROXY USER HERE
#-Dhttp.proxyPassword=PUT YOUR PROXY PASSWORD HERE
# These are commented out, but if you need to use authentication for your proxy, please fill these out.
#-Dhttp.proxyUser=PUT YOUR PROXY USER HERE
#-Dhttp.proxyPassword=PUT YOUR PROXY PASSWORD HERE
#http proxy setup
systemProp.http.proxyHost=127.0.0.1
systemProp.http.proxyPort=1087
systemProp.http.nonProxyHosts=*.nonproxyrepos.com|localhost|127.0.0.1/24
#https proxy setup
systemProp.https.proxyHost=127.0.0.1
systemProp.https.proxyPort=1087
systemProp.https.nonProxyHosts=*.nonproxyrepos.com|localhost|127.0.0.1/24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment