Last active
January 6, 2019 07:28
-
-
Save ifduyue/72960f07be9a5ab66f9d65fda25a6ce9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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