Reputation: 247
Only problem in safari browser in ipad when site visit 2,3 page after site not working after remove. Browser cache site working after same issue.
Error: 400 bad request Request header or cookie too large nginx
Upvotes: 1
Views: 2018
Reputation: 3294
I know this is an old question. If any one getting this error, just try to increasing the large_client_header_buffers directive in nginx
Ex:
server {
large_client_header_buffers 4 16k;
}
Upvotes: 1