From aea9e631fdbefd5ed035c7e7634b4eb585fa128b Mon Sep 17 00:00:00 2001 From: Brian Clark Date: Tue, 15 Oct 2024 14:25:12 -0400 Subject: [PATCH] Increase proxy timeouts to 5 min --- nginx/default.conf.template | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nginx/default.conf.template b/nginx/default.conf.template index f6681c9..10ca036 100644 --- a/nginx/default.conf.template +++ b/nginx/default.conf.template @@ -18,6 +18,11 @@ server { proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-Proto $scheme; + proxy_read_timeout 300; + proxy_connect_timeout 300; + proxy_send_timeout 300; + send_timeout 300; + keepalive_timeout 300; client_max_body_size 64m; } }