24 lines
486 B
Desktop File
24 lines
486 B
Desktop File
[Unit]
|
|
Description=LibreTime API Service
|
|
|
|
[Service]
|
|
Type=notify
|
|
KillMode=mixed
|
|
PrivateTmp=true
|
|
|
|
Environment=LIBRETIME_LOG_FILEPATH=/var/log/libretime/api.log
|
|
Environment=LIBRETIME_CONFIG_FILEPATH=/etc/airtime/airtime.conf
|
|
|
|
ExecStart=/usr/bin/gunicorn \
|
|
--workers 4 \
|
|
--log-file - \
|
|
--bind 127.0.0.1:8081 \
|
|
libretime_api.wsgi
|
|
ExecReload=/bin/kill -s HUP $MAINPID
|
|
User=libretime-api
|
|
Group=libretime-api
|
|
Restart=always
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|