[AC-AISVC-50] 合入第一个稳定版本 #2

Merged
MerCry merged 32 commits from feature/prompt-unification-and-logging into main 2026-02-26 13:03:31 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 72700038c6 - Show all commits

View File

@ -9,8 +9,7 @@ server {
}
location /api/ {
set $upstream http://ai-service:8080;
proxy_pass $upstream/;
proxy_pass http://ai-service:8080/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
@ -21,6 +20,7 @@ server {
proxy_cache_bypass $http_upgrade;
proxy_read_timeout 300s;
proxy_connect_timeout 75s;
proxy_buffering off;
}
gzip on;