跳转至

代理


更新于 2023-02-17

https代理

Bash
1
2
3
4
5
6
# POWERSHELL
$env:HTTPS_PROXY="http://127.0.0.1:10809"
# CMD 
set https_proxy=http://127.0.0.1:10809
# LINUX
export https_proxy=http://127.0.0.1:10809

go国内代理

Bash
1
go env -w GOPROXY=https://goproxy.cn,direct