Nginx - 有时会抛出 502 Bad Gateway
Nginx - sometimes throws 502 Bad Gateway
我有一个项目 Django、gunicorn、nginx。
它大部分工作(大多数端点),但有时 nginx 会抛出 502 BAD GATEWAY。
错误是upstream prematurely closed connection while reading response header from upstream
你知道它有什么问题吗?
谢谢!
有时当页面呈现时间比预期长时会发生这种情况
尝试增加超时时间(nginx默认超时时间为60秒)
proxy_send_timeout 180s;
proxy_read_timeout 180s;
在此处阅读更多内容http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_read_timeout
我有一个项目 Django、gunicorn、nginx。
它大部分工作(大多数端点),但有时 nginx 会抛出 502 BAD GATEWAY。
错误是upstream prematurely closed connection while reading response header from upstream
你知道它有什么问题吗?
谢谢!
有时当页面呈现时间比预期长时会发生这种情况
尝试增加超时时间(nginx默认超时时间为60秒)
proxy_send_timeout 180s;
proxy_read_timeout 180s;
在此处阅读更多内容http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_read_timeout