From ab6b1e284f641a6b3a1ef7b87ae228a642e10ce0 Mon Sep 17 00:00:00 2001 From: LukeGus Date: Fri, 26 Sep 2025 16:59:54 -0500 Subject: [PATCH] Fix nginx error --- docker/nginx-https.conf | 2 +- docker/nginx.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/nginx-https.conf b/docker/nginx-https.conf index 02f425e2..cfb00451 100644 --- a/docker/nginx-https.conf +++ b/docker/nginx-https.conf @@ -8,6 +8,7 @@ http { sendfile on; keepalive_timeout 65; + client_header_timeout 300s; # SSL Configuration ssl_protocols TLSv1.2 TLSv1.3; @@ -188,7 +189,6 @@ http { location /ssh/file_manager/ssh/ { client_max_body_size 5G; client_body_timeout 300s; - client_header_timeout 300s; proxy_pass http://127.0.0.1:30004; proxy_http_version 1.1; diff --git a/docker/nginx.conf b/docker/nginx.conf index e5abf3cb..6a130271 100644 --- a/docker/nginx.conf +++ b/docker/nginx.conf @@ -8,6 +8,7 @@ http { sendfile on; keepalive_timeout 65; + client_header_timeout 300s; # SSL Configuration ssl_protocols TLSv1.2 TLSv1.3; @@ -174,7 +175,6 @@ http { location /ssh/file_manager/ssh/ { client_max_body_size 5G; client_body_timeout 300s; - client_header_timeout 300s; proxy_pass http://127.0.0.1:30004; proxy_http_version 1.1;