From 8456a4a047f75c17a686f35fe09b05ae2369ab0c Mon Sep 17 00:00:00 2001 From: Paulo Sousa Date: Wed, 29 Nov 2023 13:37:39 -0300 Subject: [PATCH] static: adjust nginx for receive large cookies --- static/etc/nginx.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/static/etc/nginx.conf b/static/etc/nginx.conf index 66d06e6..3a9da0e 100644 --- a/static/etc/nginx.conf +++ b/static/etc/nginx.conf @@ -11,6 +11,8 @@ http { include mime.types; default_type application/octet-stream; types_hash_max_size 2048; + client_header_buffer_size 32k; + large_client_header_buffers 32 32k; server_tokens off; sendfile on;