Add non Docker deployment entrypoints

This commit is contained in:
2026-06-09 11:32:34 +08:00
parent fe0133edc4
commit 1fafaa1d03
13 changed files with 299 additions and 90 deletions
+51
View File
@@ -0,0 +1,51 @@
location = /ai-agent-admin {
return 301 /ai-agent-admin/;
}
location ^~ /ai-agent-admin/basic-api/ {
proxy_pass http://127.0.0.1:8001/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_connect_timeout 60s;
proxy_read_timeout 300s;
proxy_send_timeout 300s;
}
location ^~ /basic-api/ {
proxy_pass http://127.0.0.1:8001/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_connect_timeout 60s;
proxy_read_timeout 300s;
proxy_send_timeout 300s;
}
location ^~ /ws {
proxy_pass http://127.0.0.1:8001;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_read_timeout 3600s;
proxy_send_timeout 3600s;
}
location ^~ /ai-agent-admin/assets/ {
root /var/www;
expires 1y;
add_header Cache-Control "public, immutable";
}
location ^~ /ai-agent-admin/ {
root /var/www;
try_files $uri $uri/ /ai-agent-admin/index.html;
expires -1;
add_header Cache-Control "no-cache, no-store, must-revalidate";
}