不同环境中使用网络代理

Posted by Ricky Blog on March 26, 2025

1. linux

1
2
3
export http_proxy=http://127.0.0.1:7890 && export https_proxy=http://127.0.0.1:7890

取消代理:unset http_proxy && unset https_proxy

2. docker

1
2
3
4
5
6
7
8
9
mkdir -p /etc/systemd/system/docker.service.d
vim /etc/systemd/system/docker.service.d/http-proxy.conf

[Service]
Environment="HTTP_PROXY=http://127.0.0.1:7890"
Environment="HTTPS_PROXY=http://127.0.0.1:7890"

systemctl daemon-reload
systemctl restart docker

2.2 Dockerfile

1
2
ENV http_proxy='http://127.0.0.1:7890'
ENV https_proxy='http://127.0.0.1:7890'

2.3 docker run

1
docker run -d -e http_proxy=http://127.0.0.1:7890 -e https_proxy=http://127.0.0.1:7890 image

3. git

1
2
3
4
5
6
vim ~/.gitconfig

[https]
	proxy = http://127.0.0.1:7890
[http]
	proxy = http://127.0.0.1:7890

3.2 git global

1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 设置Git全局代理
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy http://127.0.0.1:7890
# 或者
git config --global http.http://github.com.proxy socks5://127.0.0.1:7891
git config --global https.https://github.com.proxy socks5://127.0.0.1:7891

# 仅针对Github网站设置代理
git config --global http.http://github.com.proxy http://127.0.0.1:7890
git config --global https.https://github.com.proxy http://127.0.0.1:7890

# 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy