使用 Daphne 和 Nginx 部署 django 通道时出现问题

Jek*_*son 5 django nginx django-channels daphne nginx-config

当我尝试打开网站时出现 502 错误。我使用了官方网站链接中的说明

在/etc/supervisor/conf.d/添加了新文件 lifeline.conf

生命线.conf

[fcgi-program:asgi]
# TCP socket used by Nginx backend upstream
socket=tcp://localhost:8000

# Directory where your site's project files are located
directory=/home/ubuntu/lifeline/lifeline-backend

# Each process needs to have a separate socket file, so we use process_num
# Make sure to update "mysite.asgi" to match your project name
command=/home/ubuntu/Env/lifeline/bin/daphne -u /run/daphne/daphne%(process_num)d.sock --fd 0 --access-log - --proxy-head$

# Number of processes to startup, roughly the number of CPUs you have
numprocs=4

# Give each process a unique name so they can be told apart
process_name=asgi%(process_num)d

# Automatically start and recover processes
autostart=true
autorestart=true

# Choose where you want your log to go
stdout_logfile=/home/ubuntu/asgi.log
redirect_stderr=true
Run Code Online (Sandbox Code Playgroud)

设置 nginx 配置

upstream channels-backend {
    server localhost:8000;
}

server {
    listen 80;
    server_name staging.mysite.com www.staging.mysite.com;
    client_max_body_size 30M;
    location = /favicon.ico { access_log off; log_not_found off; }

    location / {
        try_files $uri @proxy_to_app;
    }

    location @proxy_to_app {
        proxy_pass http://channels-backend;

        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";

        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_set_header X-Forwarded-Host $server_name;
    }
}
Run Code Online (Sandbox Code Playgroud)

我检查了 asgi 日志文件,它包含一个错误。

daphne: error: the following arguments are required: application
Run Code Online (Sandbox Code Playgroud)

我猜lifeline.conf中有错误。

Naf*_*war 2

我假设您没有将 asgi 应用程序传递给 daphne,因为您粘贴的相关配置缺少行。你必须正确地通过它。假设你有一个conf packageasgi.py里面的模块包含asgi应用程序实例,你必须这样做

command=/home/ubuntu/Env/lifeline/bin/daphne -u /run/daphne/daphne%(process_num)d.sock conf.asgi:application
Run Code Online (Sandbox Code Playgroud)

conf.asgi:application应该在最后。

  • 我在 /run/ 中创建 `daphne` 文件夹,然后一切正常 (4认同)