私はサーバー側プロセスの初心者であり、このトピックを扱う他の質問は私とは異なるスタックを実行しているため、使用可能な回答を見つけるのは非常に困難です。
サーバーブロックのIPアドレスで愚かなエラーを犯している可能性は非常に高いですが、私も初心者なので、それは明らかではありません。
Django 2.1アプリケーションをNginx
とsupervisor
を使用してDigital Oceanで実行しています。私のアプリケーションはDjango channels
はdaphne
を使用しているため、supervisor
を使用しています(asgi
の代わりにuwsgi
)。
SSL証明書を取得するためにLet's Encryptにも登録しました。
スーパーバイザとNginxが実行されており、
502 Bad Gateway
ドメイン名を入力すると、.
Nginxログは示しています
2019/02/26 15:51:40 [error] 20187#20187: *8 connect() failed (111: Connection refused) while connecting to upstream, client: 86.xxx.xxx.14, server: myapp.com, request: "GET / HTTP/1.1", upstream: "http://127.0.0.1:8000/", Host: "www.myapp.com"
Sudo /usr/bin/supervisord -n -c /etc/supervisor/supervisord.conf
番組
2019-02-26 15:52:39,429 CRIT Supervisor running as root (no user in config file)
2019-02-26 15:52:39,430 WARN Included extra file "/etc/supervisor/conf.d/appname_asgi.conf" during parsing
2019-02-26 15:52:39,431 INFO Creating socket tcp://127.0.0.1:8000
2019-02-26 15:52:39,431 INFO Closing socket tcp://127.0.0.1:8000
Error: Another program is already listening on a port that one of our HTTP servers is configured to use. Shut this program down first before starting supervisord.
別のプログラムがport 8000
。
しかしながら Sudo netstat -nlp | grep 8000
は何も返しません。
upstream myapp {
server 127.0.0.1:8000;
}
server {
server_name myapp.com www.myapp.com;
location = /favicon.ico { access_log off; log_not_found off; }
location / {
try_files $uri @proxy_to_app;
}
location /static/ {
root /home/me/myapp/src/myapp;
}
location /media/ {
root /home/me/myapp/src/myapp;
include /etc/nginx/mime.types;
}
location @proxy_to_app {
proxy_pass http://myapp;
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;
}
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/myapp.com/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/myapp.com/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
server {
if ($Host = www.myapp.com) {
return 301 https://$Host$request_uri;
} # managed by Certbot
if ($Host = myapp.com) {
return 301 https://$Host$request_uri;
} # managed by Certbot
listen 80;
server_name myapp.com www.myapp.com;
return 404; # managed by Certbot
[fcgi-program:asgi]
# TCP socket used by Nginx backend upstream
socket=tcp://127.0.0.1:8000
# Directory where your site's project files are located
directory=/home/me/myapp/src/myapp
# 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=daphne -u /home/me/daphne/run/daphne%(process_num)d.sock --f$
# 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/me/daphne/logs/asgi.log
redirect_stderr=true
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State User Inode PID/Program name
tcp 0 0 127.0.0.1:6379 0.0.0.0:* LISTEN 112 2954261 11650/redis-server
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 0 3495386 19401/nginx -g daem
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 0 15750 1564/sshd
tcp 0 0 0.0.0.0:443 0.0.0.0:* LISTEN 0 3499269 19401/nginx -g daem
tcp 0 356 xxx.xx.xxx.76:22 xx.xx.xxx.14:52521 ESTABLISHED 0 3417368 13924/1
tcp 0 0 xxx.xx.xxx.76:22 xx.xx.xxx.14:52528 ESTABLISHED 0 3418136 14131/2
tcp6 0 0 :::6379 :::* LISTEN 1000 2954691 11712/redis-server
tcp6 0 0 :::80 :::* LISTEN 0 3495387 19401/nginx -g daem
tcp6 0 0 :::22 :::* LISTEN 0 15761 1564/sshd
私が言ったように、誰かがこの分野でより高いスキルレベルを持っている人には問題が明白であると確信しているので、誰かがこれを見渡すことができれば幸いです。
どうもありがとう。
に変更することで解決しました
command=/home/Env/myapp/bin/daphne -u /run/daphne/daphne%(process_num)d.sock --fd 0 --access-log - --proxy-headers mysite.asgi:application
daphne
コマンドを実行できました