9

我正在尝试让一个由 django 频道支持的聊天应用程序在带有负载均衡器的 AWS Elastic Beanstalk 上工作。

我基本上是在修改https://github.com/jacobian/channels-example中的代码以使用 Elastic Beanstalk。我可以使用命令在本地成功运行它

python manage.py runserver

问题是当我使用 Elastic Beanstalk 部署它时,启动聊天应用程序时出现以下错误

WebSocket connection to 'wss://mydomain.com/test/' failed: Error 
during WebSocket handshake: Unexpected response code: 200

我尝试了https://stackoverflow.com/a/29831723/3667089提出的解决方案,但它只是显示了不同的错误代码

WebSocket connection to 'wss://mydomain.com/test/websocket' failed: 
Error during WebSocket handshake: Unexpected response code: 404

我还已经将负载均衡器侦听器端口更改为 TCP 80,并获得了 SSL 证书以将安全侦听器端口更改为 SSL 443,但仍然出现相同的错误。

我还在AWS Elastic Beanstalk 上阅读了带有 socket.io 的 Websockets,但没有为 Django 配置代理服务器的选项,我认为它默认使用 Apache。

我缺少 Elastic Beanstalk 的配置以使其正常工作?

有什么办法可以改变这一点,以便我们可以使用 asgi 运行 daphne 服务器?

4

1 回答 1

1

我不在 Elastic Beanstalk 上,但这是我的 VPS 配置。带有 nginx 和主管的 Ubuntu 14.04。Supervisor 的工作是确保服务器和工作进程始终处于运行状态。Nginx 监听 localhost 上的 8000 端口并将其转发到 8080 和 443。

# nginx.conf
server {
    listen 8080 default_server;
    server_name example.com;
    return 301 https://example.com$request_uri;
}

server {
    listen 443 default_server ssl;
    server_name example.com;

    # ... SSL stuff

    # Send root to the ASGI server
    location / {
        proxy_pass http://localhost:8000;
        proxy_http_version 1.1;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_set_header Host $host;
    }

    # Static Files
    location /static/ {
        root /home/ubuntu/project;
    }

    # Media Files
    location /media/ {
        root /home/ubuntu/project;
    }
}

这是我对主管的配置。我只需重新启动主管即可启动服务器sudo service supervisor restart

# supervisord.conf
[program:project_server]
directory=/home/ubuntu/project/
command=/home/ubuntu/project/venv/bin/daphne project.asgi:channel_layer --port 8000 --bind 0.0.0.0

[program:project_worker]
process_name=project_worker%(process_num)s
numprocs=3
directory=/home/ubuntu/project/
command=/home/ubuntu/project/venv/bin/python /home/ubuntu/project/manage.py runworker

[group:project]
programs=project_server,project_worker
于 2016-12-02T20:20:01.487 回答