Home

Published

- 1 min read

increase nginx timeout

img of increase nginx timeout

The solution for this is noted below

increase nginx timeout

Solution

   step 1:  $sudo nano /etc/nginx/nginx.conf
step 2:  add following config to http section and save it.
http {
   ...
   proxy_read_timeout 300;
   proxy_connect_timeout 300;
   proxy_send_timeout 300;
   ...
}
step 3:  $sudo service nginx reload

Try other methods by searching on the site. That is if this doesn’t work