Skip to content

Instantly share code, notes, and snippets.

@OrkoHunter
Created March 20, 2017 11:40
Show Gist options
  • Save OrkoHunter/532f5902a63aeff9816a1c8cb60b8f7f to your computer and use it in GitHub Desktop.
Save OrkoHunter/532f5902a63aeff9816a1c8cb60b8f7f to your computer and use it in GitHub Desktop.
System Proxy Files (Need sudo privileges)
Acquire::http::proxy "http://10.3.100.207:8080/";
Acquire::ftp::proxy "ftp://10.3.100.207:8080/";
Acquire::https::proxy "http://10.3.100.207:8080/";
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games"
http_proxy=http://10.3.100.207:8080/
https_proxy=http://10.3.100.207:8080/
ftp_proxy=http://10.3.100.207:8080/
no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com"
HTTP_PROXY=http://10.3.100.207:8080/
HTTPS_PROXY=http://10.3.100.207:8080/
FTP_PROXY=http://10.3.100.207:8080/
NO_PROXY="localhost,127.0.0.1,localaddress,.localdomain.com"
@OrkoHunter
Copy link
Author

Location of 95proxies is /etc/apt/apt.conf.d/95proxies
Location of environment is /etc/environment

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment