gpt4 book ai didi

python - uwsgi + nginx + flask : upstream prematurely closed

转载 作者:太空狗 更新时间:2023-10-29 20:47:29 25 4
gpt4 key购买 nike

我在 flask 上创建了一个端点,它根据数据库查询(远程数据库)生成电子表格,然后将其作为下载发送到浏览器中。 Flask 不会抛出任何错误。 Uwsgi 没有提示。

但是当我检查 nginx 的 error.log 时,我看到了很多

2014/12/10 05:06:24 [error] 14084#0: *239436 upstream prematurely closed connection while reading response header from upstream, client: 34.34.34.34, server: me.com, request: "GET /download/export.csv HTTP/1.1", upstream: "uwsgi://0.0.0.0:5002", host: "me.com", referrer: "https://me.com/download/export.csv"

我像这样部署uwsgi

uwsgi --socket 0.0.0.0:5002 --buffer-size=32768 --module server --callab app

我的 nginx 配置:

server {
listen 80;
merge_slashes off;
server_name me.com www.me.cpm;

location / { try_files $uri @app; }
location @app {
include uwsgi_params;
uwsgi_pass 0.0.0.0:5002;
uwsgi_buffer_size 32k;
uwsgi_buffers 8 32k;
uwsgi_busy_buffers_size 32k;
}

}

server {
listen 443;
merge_slashes off;
server_name me.com www.me.com;

location / { try_files $uri @app; }
location @app {
include uwsgi_params;
uwsgi_pass 0.0.0.0:5002;
uwsgi_buffer_size 32k;
uwsgi_buffers 8 32k;
uwsgi_busy_buffers_size 32k;
}
}

这是 nginx 或 uwsgi 的问题,还是两者都有?

最佳答案

如@mahdix 所述,错误可能是由于 Nginx 使用 uwsgi 协议(protocol)发送请求,而 uwsgi 正在该端口上监听 http 数据包。

在 Nginx 配置中,你有类似的东西:

upstream org_app {
server 10.0.9.79:9597;
}
location / {
include uwsgi_params;
uwsgi_pass org_app;
}

Nginx 将使用 uwsgi 协议(protocol)。但是如果在 uwsgi.ini 中你有类似的东西(或者它在命令行中的等价物):

http-socket=:9597

uwsgi会speakhttp,出现题中提到的错误。参见 native HTTP support .

一个可能的解决方法是:

socket=:9597

在这种情况下,Nginx 和 uwsgi 将使用 uwsgi 协议(protocol)通过 TCP 连接相互通信。

旁注:如果 Nginx 和 uwsgi 在同一个节点中,Unix 套接字将比 TCP 更快。参见 using Unix sockets instead of ports .

关于python - uwsgi + nginx + flask : upstream prematurely closed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27396248/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com