I have a large URI and am trying to configure Nginx to accept it. The URI parameter is 52,000 characters in length and 52 KB in size. I tried to access the URI without Nginx and it works fine.
But when I use Nginx, it gives me an error. --- 414 (Request-URI Too Large)
I configured large_client_header_buffers and client_header_buffer_size in the http block, but it does not seem to work.
client_header_buffer_size 5120k; large_client_header_buffers 16 5120k;
Any help would be appreciated.
Thanks.
source share