How to configure nginx to accept larger querystring requests
Increase the ’large_client_header_buffers’
This is located in the ’http’ section of the configuration
Example:
http {
# override to allow long query string
large_client_header_buffers 8 512k;
…
}
Resources
- http://stackoverflow.com/questions/1067334/how-to-set-the-allowed-url-length-for-a-nginx-request-error-code-414-uri-too
- http://nginx.2469901.n2.nabble.com/Nginx-returning-414-even-when-large-client-header-buffers-is-set-td7451517.html
- http://wiki.nginx.org/NginxHttpCoreModule#large_client_header_buffers