購買 Vultr
- 建議節點: 洛杉磯
在伺服器上安裝 shadowsocks
wget --no-check-certificate -O shadowsocks-libev.sh https://raw.githubusercontent.com/uxh/shadowsocks_bash/master/shadowsocks-libev.sh && bash shadowsocks-libev.sh
複製程式碼
- 選擇
install
- 設定密碼
- 選擇加密方式
chacha20
(建議Arch Linux
在shadowsocks-qt5 3.0.1
使用該加密方式,且該加密方式速度較快)
安裝 BBR
wget –no-check-certificate https://github.com/teddysun/across/raw/master/bbr.sh
chmod +x bbr.sh
./bbr.sh
複製程式碼
Chrome
- 安裝
proxy-helper
,設定socks5 代理
Git
檢視全域性設定
git config -l 複製程式碼
檢視代理
git config --global http.proxy 複製程式碼
設定代理
git config --global http.proxy 'http://127.0.0.1:1080' git config --global https.proxy 'http://127.0.0.1:1080' git config --global http.proxy 'socks5://127.0.0.1:1080' git config --global https.proxy 'socks5://127.0.0.1:1080' 複製程式碼
取消代理
git config --global --unset http.proxy git config --global --unset https.proxy複製程式碼