nginx 30秒后502坏网关

4ktjp1zp  于 2023-10-17  发布在  Nginx
关注(0)|答案(2)|浏览(199)

我的网站上的一个页面需要在服务器上进行长时间的计算(约2分钟)。如果我在localhost上运行网站,它工作得很好。但在生产时~30秒。下面是我的nginx conf的http部分:

http {
log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                  '$status $body_bytes_sent "$http_referer" '
                  '"$http_user_agent" "$http_x_forwarded_for"';

access_log  /var/log/nginx/access.log  main;

sendfile            on;
tcp_nopush          on;
tcp_nodelay         on;
keepalive_timeout   120;
types_hash_max_size 2048;

include             /etc/nginx/mime.types;
default_type        application/octet-stream;

# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;
server {
    listen       80 default_server;
    listen       [::]:80 default_server;
    server_name  _;
    root         /usr/share/nginx/html;

    # Load configuration files for the default server block.
    include /etc/nginx/default.d/*.conf;

    location / {
            proxy_read_timeout 300;
            proxy_connect_timeout 300;
    }

    error_page 404 /404.html;
        location = /40x.html {
    }

    error_page 500 502 503 504 /50x.html;
        location = /50x.html {
    }

}

我试着添加:

fastcgi_read_timeout 300;
proxy_read_timeout 300;

最后(在“服务器”之后),但它没有做任何事情。

von4xj4u

von4xj4u1#

如果你得到502 Bad Gateway错误,这意味着你的应用程序服务器(我猜它的独角兽根据你的标签)正在发送超时,而不是Nginx,你应该在你的生产服务器的unicorn.rb文件中增加超时。

worker_processes 2
listen "/tmp/xxx.socket"
##equal to your proxy read timeout in the Nginx config.
timeout 300 
pid "/tmp/unicorn.xxx.pid"

如果是Python绿色独角兽,请执行以下操作:

NUM_WORKERS=3
TIMEOUT=300

exec gunicorn ${DJANGO_WSGI_MODULE}:application \
--name $NAME \
--workers $NUM_WORKERS \
--timeout $TIMEOUT \
--log-level=debug \
--bind=x.x.x.x \
--pid=$PIDFILE
hfwmuf9z

hfwmuf9z2#

通过增加Gunicorn的超时来修复此问题。启动Gunicorn时使用了**--timeout**选项。

gunicorn -b 0.0.0.0:8000 --timeout 60 your_app:app

您可以在cmd或service中增加此值。现在是60秒
从@matanco answer得到的想法

相关问题