nginx - upstream sent too big header while reading response header from upstream
On this page
You get the following error in the nginx log:
upstream sent too big header while reading response header from upstream
Solution
Modify your nginx configuration and change/set the following directives:
proxy_buffer_size 128k; proxy_buffers 4 256k; proxy_busy_buffers_size 256k;
Restart nginx afterwards:
service nginx restart