From a9970991204974c78ff3794cb995d824ec252234 Mon Sep 17 00:00:00 2001 From: John Milmine Date: Fri, 22 Jun 2012 21:09:48 +1200 Subject: [PATCH] I found that I needed to increase nginx buffer size to accommodate the size of the ajax requests --- docs/en/installation/nginx.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/en/installation/nginx.md b/docs/en/installation/nginx.md index 7f70ac27c..833989bd4 100644 --- a/docs/en/installation/nginx.md +++ b/docs/en/installation/nginx.md @@ -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; } }