forked from 0x2620/pandora
25 lines
573 B
Desktop File
25 lines
573 B
Desktop File
[Unit]
|
|
Description=pandora daemon
|
|
|
|
[Service]
|
|
Type=simple
|
|
Restart=always
|
|
User=pandora
|
|
Group=pandora
|
|
PIDFile=/run/pandora/pandora.pid
|
|
WorkingDirectory=/srv/pandora/pandora
|
|
StandardOutput=syslog
|
|
StandardError=syslog
|
|
ExecStartPre=/srv/pandora/pandora/manage.py compile_pyc -p /srv/pandora/pandora
|
|
ExecStart=/srv/pandora/bin/gunicorn \
|
|
wsgi:application \
|
|
-p /run/pandora/pandora.pid \
|
|
--bind 127.0.0.1:2620 \
|
|
--timeout 90 \
|
|
--max-requests 1000 \
|
|
--log-level info \
|
|
--workers 5
|
|
ExecReload=/bin/kill -HUP $MAINPID
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|