Здравствуйте, не могу запустить gunicorn как демон. Плиз хелп! Вот конфиг: [Unit]
Description=Gunicorn systemd service.
Requires=gunicorn.service
After=
network.targetStartLimitIntervalSec=0
[Service]
Type=simple
User={{ user_name }}
Group={{ user_group }}
RuntimeDirectory=gunicorn
WorkingDirectory={{ base_directory }}/{{ project_directory }}/testproject
ExecStart=/usr/bin/gunicorn \
--access-logfile - \
--error-logfile {{ base_directory }}/{{ project_directory }}/testproject/error.log \
--workers 5 \
-k uvicorn.workers.UvicornWorkers \
testproject.asgi:application
[Install]
WantedBy=
multi-user.target