增加504超时错误

时间:2012-05-29 21:25:23

标签: nginx timeout fastcgi gateway

有没有什么方法可以让错误504网关超时更长,如果是这样,文件如何以及在哪里更改它位于。我在centos 6上使用nginx

2 个答案:

答案 0 :(得分:96)

根据您拥有的网关类型,您应该使用以下内容:

proxy_read_timeout 600s;

检查文档:http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_read_timeout

答案 1 :(得分:1)

如果是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 秒的脚本的结果。

默认 60 秒

enter image description here

fastcgi_read_timeout 300s

enter image description here