Changeset 0.24.1 (#157)

This commit is contained in:
2026-03-07 17:11:32 +00:00
parent a63728a481
commit b6cc4df6e7
27 changed files with 2094 additions and 453 deletions

View File

@@ -5,7 +5,7 @@ server {
index index.html;
# Backend upstream (unified container: localhost:8080)
set $backend http://localhost:8080;
set $backend http://127.0.0.1:8080;
# Gzip
gzip on;
@@ -21,7 +21,7 @@ server {
}
# ── API + WebSocket → backend ────────────
location /api/ {
location ^~ /api/ {
proxy_pass $backend;
proxy_http_version 1.1;
proxy_set_header Host $host;