[ clash ] 新增clash-sub

This commit is contained in:
zeaslity
2024-04-14 15:27:48 +08:00
parent 7883ddeba5
commit 714ff01639
7 changed files with 164 additions and 179 deletions

View File

@@ -0,0 +1,35 @@
server {
listen 80;
location /octopus-agent/ {
root /data/github-action;
autoindex on; # 开启目录浏览功能;
}
location /shell/ {
root /data/github-action;
autoindex on; # 开启目录浏览功能;
}
location /agent-config/ {
root /data/github-action;
autoindex on; # 开启目录浏览功能;
}
location /agent-version {
add_header Content-Type text/plain;
alias /data/github-action/agent-version;
}
}