0%

Linux通过环境变量设置curl代理

Docker、Git代理配置

在Linux下设置代理

配置环境变量

1
2
export http_proxy=http://your-ip-address:port/
export http_proxy=http://user:password@your-proxy-ip-address:port

代理格式:

1
2
3
http://[user:password@]proxyhost[:port]/
https://[user:password@]proxyhost[:port]/
socks5://[user:password@]proxyhost[:port]/

参考

如何让 curl 命令通过代理访问