From e59e976cd9b8d50310c1b71633473487e3d581d4 Mon Sep 17 00:00:00 2001 From: dimti Date: Wed, 18 Sep 2024 13:32:32 +0300 Subject: [PATCH] + increase proxy buffers for headers from proxy upstream & increase client header buffers --- config/nginx/conf.d/vhosts.conf.example | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/nginx/conf.d/vhosts.conf.example b/config/nginx/conf.d/vhosts.conf.example index 8cce30b..7e37c37 100644 --- a/config/nginx/conf.d/vhosts.conf.example +++ b/config/nginx/conf.d/vhosts.conf.example @@ -35,6 +35,10 @@ server { include includes.d/octobercms.conf; include includes.d/staticfiles.conf; client_max_body_size 300M; + large_client_header_buffers 4 32k; + proxy_buffer_size 16k; + proxy_buffers 8 16k; + proxy_busy_buffers_size 32k; location ~ ^/index.php { fastcgi_pass php81; include fastcgi_params;