Я действительно очень старался настроить конфигурацию соединения через торнадо с помощью nginx, наконец, у меня возникла одна проблема, но я не могу ее исправить.Я сделал какую-то ошибку в моей конфигурации?Это мой websocket.py:
class Application(tornado.web.Application):
def __init__(self):
handlers = [
(r"/", ChatSocketHandler)
]
settings = dict(
cookie_secret="__TODO:_GENERATE_YOUR_OWN_RANDOM_VALUE_HERE__",
template_path=os.path.join(os.path.dirname(__file__),
"templates"),
static_path=os.path.join(os.path.dirname(__file__), "static"),
xsrf_cookies=False,
debug = True
)
super(Application, self).__init__(handlers, **settings)
class ChatSocketHandler(tornado.websocket.WebSocketHandler):
def check_origin(self, origin):
return True
def open(self, *args, **kwargs):
print('connection opened')
def on_close(self):
print('connection closed')
def on_message(self, message):
print(message)
self.write_message(message)
Это мой клиентский скрипт:
<script>
let url = "ws://104.131.115.151:8888/";
let socket = new WebSocket(url);
socket.onmessage = function(event) {
console.log(event);
};
socket.onopen = function () {
console.log('opend');
socket.send('Hello World')
};
socket.onclose = function () {
console.log('closed');
};
</script>
В консоли моего веб-браузера:
opened
closed
При запуске на локальном компьютеребез конфигурации nginx:
opened
MessageEvent{...}
Это моя конфигурация nginx:
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
upstream pythonserver {
server 127.0.0.1:8888;
}
server{
listen 80;
server_name 209.97.139.107;
location /chatsocket {
proxy_pass http://pythonserver;
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_buffers 8 32k;
proxy_buffer_size 64k;
proxy_read_timeout 86400s;
proxy_send_timeout 86400s;
keepalive_timeout 90;
proxy_cache off;
proxy_buffering off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
include uwsgi_params;
uwsgi_pass unix:/home/apideveloper/api/app.sock;
}
location / {
include uwsgi_params;
uwsgi_pass unix:/home/apideveloper/api/app.sock;
}
}
Также я использую https://digitalocean.com облако и URL моего сервера http://209.97.139.107/