fix: Increase Nginx timeouts to 600s to support long-running AI tasks

This commit is contained in:
2025-12-29 14:31:04 +00:00
parent bd6aa34846
commit 47fa37dd98
2 changed files with 11 additions and 0 deletions

View File

@@ -9,6 +9,12 @@ http {
access_log /dev/stdout;
error_log /dev/stderr;
# Increase Timeouts for Long-Running AI Tasks
proxy_read_timeout 600s;
proxy_connect_timeout 600s;
proxy_send_timeout 600s;
send_timeout 600s;
# Resolver ist wichtig für Docker
resolver 127.0.0.11 valid=30s ipv6=off;