您好!
我与django-channels
创建了一个聊天室。每次我尝试在生产环境中通过Web套接字连接到聊天室时,都会失败。
在本地它可以正常工作。
我托管在 digitalocean
点冻结:
channels==2.1.2
channels-redis==2.3.0
daphne==2.2.1
'''
我已将
安装到redis-server
sudo apt-get install redis-server
这是我的设置。
INSTALLED_APPS = [
# '''
'channels',
# '''
]
CHANNEL_LAYERS = {
'default': {
'BACKEND': 'channels_redis.core.RedisChannelLayer',
'CONFIG': {
"hosts": [os.environ.get('REDIS_URL', 'redis://localhost:6379')],
},
},
}
ASGI_APPLICATION = "project_name.routing.application"
这是我的asgi.py
和wsgi.py
import os
import django
from channels.routing import get_default_application
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "project_name.settings")
django.setup()
application = get_default_application()
这是我的project_folder.rounting.py
application = ProtocolTypeRouter({
'websocket':AllowedHostsOriginValidator(
AuthMiddlewareStack(
URLRouter([
# my urls
])
)
)
})
我一直在firefox和其他浏览器中获得该信息:
Firefox无法通过wss://www.domain_name.com/url-to/1/XBvZjr2pqdf6fhy/
建立与服务器的连接
但是它在本地有效。
更新
这是我的js
var loc = window.location;
var wsStart = loc.protocol == "https:" ? "wss://" : "ws://"
var endpoint = wsStart + loc.host + loc.pathname
var socket = new ReconnectingWebSocket(endpoint);
socket.onmessage = function(e){
// code
}
答案 0 :(得分:1)
我终于解决了这个问题,并在ws
连接下将ssl
与wss://
一起使用。
对于那些面临相同问题的人。
请注意,我使用
gunicorn
作为Web服务器,仅用于http
请求daphne
作为ws
Web套接字的Web服务器nginx
作为反向代理 asgi.py
import os
import django
from channels.routing import get_default_application
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "project.settings")
django.setup()
application = get_default_application()
settings.py
ASGI_APPLICATION = "project.routing.application"
CHANNEL_LAYERS = {
'default': {
'BACKEND': 'channels_redis.core.RedisChannelLayer',
'CONFIG': {
"hosts": [(os.environ.get('REDIS_HOST', 'localhost'),6379)],
},
},
}
使用django设置asgi
后,我使用supervisorctl
来保持daphne
的运行。在daphne_asgi.conf
/etc/supervior/conf.d/
daphne_asgi.conf
[program:asgi_daphne]
directory=/path/to/your/project
command=/executable/path/to/daphne --bind 0.0.0.0 --port 8010 project.asgi:application
# 0.0.0.0 ip of your website
# I choose the port 8010 for daphne
stdout_logfile=/path/to/log/daphne.log
autostart=true
autorestart=true
redirect_stderr=true
运行以下命令以更新启动守护程序
sudo supervisorctl reread
sudo supervisorctl update
这是nginx
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
upstream websocket {
server 0.0.0.0:8010;
}
daphne中使用的主机和端口... --bind 0.0.0.0 --port 8010
#redirection to a https
server {
listen 80;
server_name 0.0.0.0 example.com www.example.com;
client_max_body_size 10M;
return 301 https://www.example.com$request_uri;
}
server {
listen 443 ssl default_server;
server_name www.example.com;
client_max_body_size 10M;
# ssl configuration
...
# normal http request, I use .sock
location / {
include proxy_params;
proxy_pass http://unix:/path/to/project.sock;
}
# ws request /ws/
location /ws/ {
proxy_pass http://websocket;
# this magic is needed for WebSocket
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
}
}
请注意,我在ws网址中添加了/ws/
application = ProtocolTypeRouter({
'websocket':AllowedHostsOriginValidator(
AuthMiddlewareStack(
URLRouter(
[
url(r'^ws/$', HelloConsumer),
]
)
)
)
})
答案 1 :(得分:0)
最重要,请使用redis 5.0.9。否则,将再次出现错误。
获取