nginx+tomcat nginx 504 Gateway Time-out的方法
发布网友
发布时间:2022-12-29 17:29
我来回答
共1个回答
热心网友
时间:2023-10-27 05:52
解决 nginx 504 Gateway Time-out的方法
应用是nginx+ tomcat 7
根据这个错误,是因为tomcat没有及时回应nginx,导致错误.
先使用 fiddler 将页面的请求抓出来.
找到504的请求.然后查找原因.
因为这个请求时间比较长,只有90秒.
所以修改
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
修改成
proxy_connect_timeout 18000; ##修改成半个小时
proxy_send_timeout 18000;
proxy_read_timeout 18000;
http://www.07net01.com/shi/188736.html
https://blog.csdn.net/e_wsq/article/details/76599391