Your commit message

This commit is contained in:
zeaslity
2024-11-27 10:33:20 +08:00
commit 080c7bb97f
911 changed files with 168439 additions and 0 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;
}
}