大量更新

This commit is contained in:
zeaslity
2025-01-20 16:38:08 +08:00
parent ed9e0947e6
commit 7db1e0f565
46 changed files with 583 additions and 1896 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;
}
}