nignx timeouts

Some tweaks to avoid times out on nginx/php.

Add the following lines to your nginx.conf  (mine is /etc/nginx/nginx.conf) inside http { 

client_header_timeout 3000;
client_body_timeout 3000;
fastcgi_read_timeout 3000;
client_max_body_size 32m;
fastcgi_buffers 8 128k;
fastcgi_buffer_size 128k;

Lets hope it solves it…

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.