Last active
March 7, 2017 20:12
-
-
Save 6220119/6b511daf88431013ccef54fdf31d9117 to your computer and use it in GitHub Desktop.
Corporate Proxy suck
This file contains 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
git config --global url."https://".insteadOf git:// | |
git config --global url."https://github.com/".insteadOf [email protected]: | |
git config --global http.proxy http://proxy.mycompany:80 | |
npm config set proxy http://proxy.company.com:8080 | |
npm config set https-proxy http://proxy.company.com:8080 | |
npm config set registry http://registry.npmjs.org/ | |
automatic proxy script can be located using chrome://net-internals/#proxy | |
Thanks http://artica-proxy.com/how-to-debug-proxy-pac-with-google-chrome/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment