NGINX *1 upstream sent too big header while reading response header from upstream


When I login into WordPress Administration page, I got it blank pages. Curious about what happend, I go through into NGINX error.log and I see this error :

1
*1 upstream sent too big header while reading response header from upstream

Then to solve this problem, I need to add “fastcgi_buffers 8 256k;” and “fastcgi_buffer_size 128k;” this into my nginx hosts :

1
2
3
4
5
6
7
8
9
10
11
12
13
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ .php$ {
     fastcgi_buffers 8 256k;
     fastcgi_buffer_size 128k;      
     fastcgi_send_timeout  5m;
     fastcgi_read_timeout 5m;
     fastcgi_connect_timeout 5m;
     fastcgi_pass unix:/var/run/php5-fpm.sock;
     fastcgi_index  index.php;
     fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
     include fastcgi_params;
}

Then my problem solved! 🙂


Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.