Checkpoint production workflow updates

This commit is contained in:
2026-06-30 15:25:29 +08:00
parent 19ae3ec37f
commit 9c80b95385
66 changed files with 7639 additions and 267 deletions
+13
View File
@@ -130,6 +130,19 @@ http {
}
# SSE: disable buffering so events are pushed immediately
location /api/tasks/runtime-summary/stream {
proxy_pass http://127.0.0.1:18000;
proxy_http_version 1.1;
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_buffering off;
proxy_cache off;
proxy_read_timeout 3600s;
proxy_set_header Connection '';
}
location /api/tasks/active/stream {
proxy_pass http://127.0.0.1:18000;
proxy_http_version 1.1;