gpt4 book ai didi

Tornado websocket 演示的 Nginx 配置?

转载 作者:行者123 更新时间:2023-12-01 11:39:46 30 4
gpt4 key购买 nike

有人可以为我提供 Tornado websocket 聊天演示的 Nginx 配置吗?演示位于/tornado/demos/websocket...

最佳答案

像这样的配置将起作用:

events {
worker_connections 1024;
}

http {
upstream chatserver {
server 127.0.0.1:8888;
}

server {
# Requires root access.
listen 80;

# WebSocket.
location /chatsocket {
proxy_pass http://chatserver;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}

location / {
proxy_pass http://chatserver;
}
}
}

您需要以 root 身份运行 Nginx 以监听端口 80。现在您可以使用浏览器访问“localhost”。 More info on Nginx and websockets here .

关于Tornado websocket 演示的 Nginx 配置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22367215/

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