Я пытаюсь настроить gunicorn для моего веб-сайта django на digitalocean, но
sudo systemctl start gunicorn.socket
отвечает как "Ошибка задания gunicorn.socket".Я дважды проверил наличие орфографических ошибок или проблем с путями в каталогах.
Я следовал этому руководству - https://www.digitalocean.com/community/tutorials/how-to-set-up-django-with-postgres-nginx-and-gunicorn-on-ubuntu-18-04
filepath = /etc/systemd/system/gunicorn.service
[Unit]
Description=gunicorn daemon
Requires=gunicorn.socket
After=network.target
[Service]
User=myuser
Group=www-data
WorkingDirectory=/home/myuser/profile_website
ExecStart=/home/myuser/profile_website/myenv/bin/gunicorn \
--access-logfile - \
--workers 3 \
--bind unix:/run/gunicorn.sock \
project2.wsgi:application
[Install]
WantedBy=multi-user.target
filepath = /etc/systemd/system/gunicorn.socket
[Unit]
Description=gunicorn socket
[Socket]
ListenStream=/run/gunicorn.sock
[Install]
WantedBy=sockets.target
Я уже пытался перезапустить gunicorn.socket, но он не работал.