gpt4 book ai didi

python - websockets 由 nginx 通过 https 代理到 Gunicorn,给出 400(错误请求)

转载 作者:行者123 更新时间:2023-11-30 22:52:20 30 4
gpt4 key购买 nike

我在 Flask Web 应用程序中建立 Websocket 时遇到问题。

在客户端,我每秒向服务器发出一个“ping”websocket 事件。在浏览器控制台中,我每秒都会看到以下错误

POST https://example.com/socket.io/?EIO=3&transport=polling&t=LOkVYzQ&sid=88b5202cf38f40879ddfc6ce36322233 400 (BAD REQUEST)

GET https://example.com/socket.io/?EIO=3&transport=polling&t=LOkVZLN&sid=5a355bbccb6f4f05bd46379066876955 400 (BAD REQUEST)

WebSocket connection to 'wss://example.com/socket.io/?EIO=3&transport=websocket&sid=5a355bbccb6f4f05bd46379066876955' failed: WebSocket is closed before the connection is established.

我有以下nginx.conf

server {
listen 80;
server_name example.com www.example.com;
return 301 https://$server_name$request_uri;
}

upstream app_server {

# for UNIX domain socket setups
server unix:/pathtowebapp/gunicorn.sock fail_timeout=0;

}

server {

listen 443 ssl;

server_name example.com www.example.com;

keepalive_timeout 5;

ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;

ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH';

charset utf-8;
client_max_body_size 30M;

location / {
try_files $uri @proxy_to_app;
}

location /socket.io {
proxy_pass http://app_server;
proxy_redirect off;

proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Upgrade websocket;
proxy_set_header Connection "upgrade";
proxy_read_timeout 86400;
proxy_buffering off;
proxy_headers_hash_max_size 1024;

}


location /static {
alias /pathtowebapp/webapp/static;
}

location @proxy_to_app {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

# enable this if and only if you use HTTPS
proxy_set_header X-Forwarded-Proto https;

proxy_set_header X-Forwarded-Proto $scheme;

proxy_set_header Host $http_host;

# we don't want nginx trying to do something clever with
# redirects, we set the Host: header above already.
proxy_redirect off;
#proxy_buffering off;
proxy_pass http://app_server;

}

}

我一直在寻找在gunicorn 前面使用nginx 与https 一起使用的websocket 的示例。

尽管 websocket 连接不成功,但我的网页已加载。

客户端 Websocket 是使用以下 JavaScript 建立的:

var socket = io.connect('https://' + document.domain + ':' + location.port + namespace);

这是我的gunicorn.conf

import multiprocessing

bind = 'unix:/pathtowebapp/gunicorn.sock'
workers = multiprocessing.cpu_count() * 2 + 1
worker_class = 'eventlet'

[编辑]如果我按照Flask-IO documentation中的方式配置nginx只需运行 (env)$ python deploy_app.py 就可以了。但我的印象是,这并不像我之前提到的设置那样适合生产

最佳答案

问题是您在gunicorn 上运行多个工作进程。由于gunicorn 中的负载均衡器非常有限,不支持粘性 session ,因此当前不支持此配置。文档引用:https://flask-socketio.readthedocs.io/en/latest/#gunicorn-web-server .

相反,运行多个gunicorn实例,每个实例有一个worker,然后使用ip_hash方法设置nginx来进行负载平衡,以便 session 具有粘性。

此外,如果您不知道,如果您运行多个服务器,则还需要运行消息队列,以便进程可以协调。上面的文档链接中也介绍了这一点。

关于python - websockets 由 nginx 通过 https 代理到 Gunicorn,给出 400(错误请求),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38624447/

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