Stream live server logs over SSE

This commit is contained in:
npc0-hue
2026-08-03 22:28:54 +08:00
parent 5d4fca14f9
commit 7eac1926dd
48 changed files with 1526 additions and 263 deletions
+14 -1
View File
@@ -5,6 +5,20 @@ server {
root /usr/share/nginx/html;
index index.html;
location ~ ^/api/v1/server-instances/[^/]+/logs/events$ {
proxy_pass http://platform:8080;
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_buffering off;
proxy_cache off;
proxy_read_timeout 1h;
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;
add_header X-Accel-Buffering no;
}
location /api/v1/ {
proxy_pass http://platform:8080/api/v1/;
proxy_http_version 1.1;
@@ -27,4 +41,3 @@ server {
try_files $uri $uri/ /index.html;
}
}