文章目录
关于代理的环境变量:
- http_proxy:为http网站设置代理, 示例:192.168.1.1:8080; user:pass@192.168.1.1:8080; socks4://192.168.1.1:1080; socks5://192.168.1.1:1080
- https_proxy: 为https网站设置代理,同http
- ftp_proxy: 为ftp协议设置代理; socks5://192.168.1.1:1080
- no_proxy: 无需代理的主机或域名;可以使用通配符;多个时使用“,”号分隔; .go.com,192.168..,.local,localhost,127.0.0.1
示例
export http_proxy=192.168.1.1:8008
export http_proxy=socks5://192.168.1.1:1080
export https_proxy=socks5://192.168.1.1:1080
export no_proxy="*.go.com,10.*.*.*,192.168.*.*,*.local,localhost,127.0.0.1"