504 Gateway Time-out

当使用nginx做反向代理tomcat时,ajax上传大文件,容易出现504 Gateway Time-out超时的情况。

解决办法:

504 Gateway Time-out_第1张图片

增大代理超时时间设置

proxy_connect_timeout 600;
proxy_send_timeout 600;
proxy_read_timeout 600;(关键)

你可能感兴趣的:(nginx)