假定代理服务器地址为 http://1.2.3.4:3128

git 配置代理

git config --global https.proxy http://1.2.3.4:3128
git config --global http.proxy http://1.2.3.4:3128

wget 配置代理

vim /etc/wgetrc

https_proxy = http://1.2.3.4:3128/
http_proxy = http://1.2.3.4:3128/
ftp_proxy = http://1.2.3.4:3128/
use_proxy = on

curl 配置代理

vim ~/.curlrc

proxy = 1.2.3.4:3128

yum 配置代理

vim /etc/yum.conf

[main]
proxy=http://1.2.3.4:3128

docker 配置代理

vim /etc/systemd/system/docker.service.d/proxy.conf

[Service]
Environment="HTTP_PROXY=http://1.2.3.4:3128/" "HTTPS_PROXY=http://1.2.3.4:3128/"

rsync 配置代理

export RSYNC_PROXY="1.2.3.4:3128"

持续补充中

最后修改:2020 年 01 月 30 日
如果觉得我的文章对你有用,请随意赞赏