一、CA商店代理 #
- 在路径
\config\plugins\community.applications
下新建proxy.cfg
文件
port=7890
tunnel=1
proxy=http://10.0.0.1
二、插件代理 #
- 直接在终端
/root
下面新建一个文件
# /root/.wgetrc
use_proxy=yes
http_proxy=http://10.0.0.1:7890
https_proxy=http://10.0.0.1:7890
wait=10
- 在路径
\config
下go
文件新增以下内容,重启
cat >>/root/.wgetrc << __EOF__
use_proxy=yes
http_proxy=http://10.0.0.1:7890
https_proxy=http://10.0.0.1:7890
wait=10
__EOF__