Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 813 Bytes

Proxy.md

File metadata and controls

33 lines (24 loc) · 813 Bytes

命令行挂代理

export https_proxy=http://127.0.0.1:7890 http_proxy=http://127.0.0.1:7890 all_proxy=socks5://127.0.0.1:7891

VPN

v2ray

Linux配置v2ray详细教程-Ubuntu为例 如果需要不挂VPN访问外网,需要在setting network中disable代理

ssr electron-ssr

download: electron-ssr-backup 用ubuntu software安装 导入链接 在ubuntu setting network中设置代理

利用proxychains让命令走代理

sudo apt install proxychains
sudo vim /etc/proxychains.conf
socks5 127.0.0.1 1080 #端口需要根据代理软件设置
proxychains wget https://www.google.com

git proxy

git config -global  https.proxy https://127.0.0.1:7891