$ npm config set proxy http://proxy.company.com:8080
$ npm config set https-proxy http://proxy.company.com:8080
$ npm config delete proxy
$ npm config delete https-proxy
$ gem install --http-proxy http://proxy.company.com:8080
$ export http_proxy="http://example.proxy_name.com:80"
$ export ALL_PROXY="http://example.proxy_name.com:80"
$ unset http_proxy
$ unset ALL_PROXY
$ git config --global http.proxy http://proxy.company.com:8080
$ git config --unset --global http.proxy
$ curl -x http://proxy.ccsd.net:8080 <command>
proxy = example.proxy_name.com:80
proxy = example.proxy_name:80
##Bower (Add to bower.json)
"search": [
"http://localhost:8000",
"https://bower.herokuapp.com"
]