CutCut
Results
2
issues of
CutCut
1panel 的 openresty 配置在`/opt/1panel/apps/openresty/openresty/conf/conf.d` 把脚本里这段找个网站的配置加进去就行了。 ```nginx location ~ ^/s/(clashMeta|default|clashMetaProfiles|sing-box|sing-box_profiles)/(.*) { default_type 'text/plain; charset=utf-8'; alias /etc/v2ray-agent/subscribe/$1/$2; } ``` 1panel 的 openresty 是 docker 部署的,需要容器挂载 /etc/v2ray-agent/ 才能成功访问,但是 /usr/share/nginx/html 是 默认挂载了的,把订阅文件复制或者像利用1panel证书那样链接过去再修改一下上面的 aliass 就不用改...