We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 723d3d3 + 4f1d31f commit 67c4ed4Copy full SHA for 67c4ed4
1 file changed
conf/nginx.conf
@@ -19,7 +19,12 @@ location __PATH__/ {
19
fastcgi_param REMOTE_USER $remote_user;
20
fastcgi_param PATH_INFO $fastcgi_path_info;
21
fastcgi_param SCRIPT_FILENAME $request_filename;
22
- fastcgi_read_timeout 600s;
+ fastcgi_read_timeout 900s;
23
+
24
+ # Buffering to survive heavy requests
25
+ fastcgi_buffers 16 16k;
26
+ fastcgi_buffer_size 32k;
27
+ fastcgi_busy_buffers_size 64k;
28
29
}
30
0 commit comments