Nginx timeout

Nginx timeout

  Timeout reasons: nginx long time without response, such as a large number of back-end query cycle, slow response, response time beyond nginx

   Solution: Modify nginx.conf file

       proxy_connect_timeout 600;

      proxy_send_timeout 600;

      proxy_read_timeout 600;

      send_timeout 600;

   Restart! ! !

 

Guess you like

Origin www.cnblogs.com/chenglao0119/p/10939315.html