有什么办法可以使错误 504 网关超时更长,如果是这样,如何以及在哪里更改文件。我在centos 6上使用nginx
问问题
109672 次
2 回答
127
根据您拥有的网关类型,您应该使用以下内容:
proxy_read_timeout 600s;
检查文档: http: //nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_read_timeout
于 2012-06-01T13:00:59.240 回答
2
如果是fastcgi
超时错误,则需要增加fastcgi_read_timeout
.
# /etc/nginx/conf.d/example.com.conf
server {
location ~ \.(php)$ {
fastcgi_pass unix:/var/run/php74-example.com.sock;
fastcgi_read_timeout 300s;
错误日志)上游超时
# tail -f example.com.error.log
2020/12/29 14:51:42 [error] 30922#30922:
*9494 upstream timed out (110: Connection timed out) while reading response header from upstream,
...
upstream: "fastcgi://unix:/var/run/php74-example.com.sock",
...
nginx 手册)
Default: fastcgi_read_timeout 60s;
Context: http, server, location
http://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_read_timeout
在 Chrome DevTools 中调用运行时间超过 60 秒的脚本的结果。
默认60s
fastcgi_read_timeout 300s
于 2020-12-29T07:53:22.287 回答