diff options
Diffstat (limited to 'extra/outbound.service')
-rw-r--r-- | extra/outbound.service | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/extra/outbound.service b/extra/outbound.service new file mode 100644 index 0000000..a33a1f3 --- /dev/null +++ b/extra/outbound.service @@ -0,0 +1,21 @@ +[Unit] +Description=outbound link usage tracker webapp +Wants=network-online.target +After=network.target syslog.target + +[Service] +Environment=OUTBOUND_WSGI_INI=/etc/outbound.wsgi.ini +Environment=OUTBOUND_CONF=/etc/outbound.conf +WorkingDirectory=/var/outbound +User=outbound +Group=outbound +Type=simple +ExecStart=/usr/sbin/outbound.bin +TimeoutStartSec=120 +ExecStop=/usr/sbin/uwsgi --stop /var/outbound/outbound-wsgi.pid +RestartSec=15 +Restart=always +KillSignal=SIGINT + +[Install] +WantedBy=multi-user.target |