We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Today, response headers >3KB result in a 502 response. Is issue is a request to bump the nginx configuration to allow for header sizes of up to 8KB.
The text was updated successfully, but these errors were encountered:
Changing buffer sizes should be carefully considered, since it changes how much memory needs to be allocated for every request.
I'm a little wary of bumping this globally, since we'd be effectively doubling the amount of memory used in the current configuration.
On the other hand, perhaps 4k is a bit low for a decent number of production use cases and 8k would be more appropriate.
In any case, the configuration change would look like this:
proxy_buffer_size 8k;
Sorry, something went wrong.
No branches or pull requests
Today, response headers >3KB result in a 502 response. Is issue is a request to bump the nginx configuration to allow for header sizes of up to 8KB.
The text was updated successfully, but these errors were encountered: