跳过正文

UNRAID 网络代理

·30 字·1 分钟·
UNRAID 教程
Earl
作者
Earl
目录

一、CA商店代理
#

  1. 在路径 \config\plugins\community.applications下新建proxy.cfg文件
port=7890
tunnel=1
proxy=http://10.0.0.1

二、插件代理
#

  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
  1. 在路径 \configgo文件新增以下内容,重启
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__