Final ADD Genuss

This commit is contained in:
2026-08-09 12:53:12 +00:00
parent 551c528e8e
commit c91477cc26
29 changed files with 1180 additions and 27 deletions
+5 -5
View File
@@ -4,18 +4,18 @@ server {
client_max_body_size 256M;
client_body_timeout 300s;
send_timeout 300s;
send_timeout 120s;
location / {
proxy_pass http://backend:8000;
proxy_http_version 1.1;
proxy_request_buffering off;
proxy_request_buffering on;
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_read_timeout 300s;
proxy_send_timeout 300s;
proxy_connect_timeout 60s;
proxy_read_timeout 120s;
proxy_send_timeout 120s;
proxy_connect_timeout 10s;
}
}