fix(docker): raise nginx request header buffers above the 8k default (#11404)

Co-authored-by: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com>
This commit is contained in:
Bo Sundgaard 2026-09-05 13:00:04 +02:00 committed by GitHub
parent cfbcb7737b
commit fb393da352
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 0 deletions

View file

@ -2,3 +2,9 @@
# Disable access logs
access_log off;
# Allow request headers up to 32k (nginx default is 8k). Large JWT cookies can push the
# Cookie header past 8k, and nginx would then reject the request with a bare 400
# before it reaches the application.
client_header_buffer_size 8k;
large_client_header_buffers 8 32k;

View file

@ -2,3 +2,9 @@
# Disable access logs
access_log off;
# Allow request headers up to 32k (nginx default is 8k). Large JWT cookies can push the
# Cookie header past 8k, and nginx would then reject the request with a bare 400
# before it reaches the application.
client_header_buffer_size 8k;
large_client_header_buffers 8 32k;