I found that I needed to increase nginx buffer size to accommodate the size of the ajax requests

This commit is contained in:
John Milmine 2012-06-22 21:09:48 +12:00
parent f17bb8f52c
commit a997099120

View File

@ -21,10 +21,13 @@ Now you need to setup a virtual host in Nginx with the following configuration s
error_page 404 /framework/main.php;
location ~ \.php$ {
include fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /home/yoursite.com/httpdocs$fastcgi_script_name;
include fastcgi_params;
fastcgi_buffer_size 32k;
fastcgi_buffers 4 32k;
fastcgi_busy_buffers_size 64k;
}
}