Erste Produktivversion

This commit is contained in:
2026-08-08 20:31:58 +02:00
parent d8ded2816d
commit 7b21e2d1b4
110 changed files with 18170 additions and 644 deletions

15
web/proxy_common.conf Normal file
View File

@@ -0,0 +1,15 @@
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_set_header X-Forwarded-Host $host;
# Kein Puffern: noetig fuer Server-Sent Events ab Phase 4.
proxy_buffering off;
proxy_cache off;
proxy_connect_timeout 5s;
proxy_send_timeout 60s;
# Grosszuegig, damit langlebige SSE-Verbindungen nicht abreissen.
proxy_read_timeout 3600s;