25 lines
472 B
Desktop File
25 lines
472 B
Desktop File
[Unit]
|
|
Description=gunicorn daemon
|
|
Requires=gunicorn.socket
|
|
After=network.target
|
|
|
|
|
|
[Service]
|
|
User=django
|
|
Group=django
|
|
WorkingDirectory=/home/django/leagues
|
|
ExecStart=/home/django/leagues/venv/bin/gunicorn \
|
|
--bind unix:/run/gunicorn.sock \
|
|
--log-level debug \
|
|
--limit-request-line 0 \
|
|
--limit-request-field_size 0 \
|
|
--graceful-timeout 1200 \
|
|
--capture-output \
|
|
--timeout 1200 \
|
|
--workers 3 \
|
|
leagues.wsgi:application
|
|
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|