blob: c4e3a33219168ea1f3eaeb1495a8641a6e232c15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Be sure to use `systemctl edit sortarr` to modify this service with an
# override.conf because direct changes will be overwritten by package updates.
[Unit]
Description=Sortarr Service
[Service]
User=sortarr
Group=sortarr
Type=simple
Environment=ENV_FILE_PATH=/var/lib/sortarr/sortarr.env
WorkingDirectory=/usr/lib/sortarr
ExecStart=/usr/bin/python -m waitress --host=0.0.0.0 --port 8787 --threads=4 --url-prefix=/sortarr app:app
SyslogIdentifier=sortarr
[Install]
WantedBy=multi-user.target
|