Loading... <div class="tip share">请注意,本文编写于 1843 天前,最后修改于 1787 天前,其中某些信息可能已经过时。</div> 假定代理服务器地址为 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 日 © 允许规范转载 打赏 赞赏作者 支付宝微信 赞 如果觉得我的文章对你有用,请随意赞赏
此处评论已关闭