Last active
December 6, 2018 10:18
-
-
Save geekoff7/1409d593be201553c04944e1c277fe2c to your computer and use it in GitHub Desktop.
freedom of developers http proxy
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
# Use a terminal to open /etc/environment using a text editor as superuser | |
export http_proxy=fodev.org:8118/ | |
export https_proxy=fodev.org:8118/ | |
export ftp_proxy=fodev.org:8118/ | |
export no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com" | |
export HTTP_PROXY=fodev.org:8118/ | |
export HTTPS_PROXY=fodev.org:8118/ | |
export FTP_PROXY=fodev.org:8118/ | |
export `NO_PROXY="localhost,127.0.0.1,localaddress,.localdomain.com" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment