mirror of
https://github.com/coollabsio/coolify.git
synced 2026-09-26 17:30:46 -04:00
Co-authored-by: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com>
11 lines
340 B
Plaintext
11 lines
340 B
Plaintext
# Custom nginx configuration
|
|
|
|
# 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;
|