From 4a8ce7e2862b338a7f8e34d016a3119290239b0b Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Tue, 29 Nov 2022 16:09:22 -0500 Subject: initial commit --- extra/outbound.service | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 extra/outbound.service (limited to 'extra/outbound.service') 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 -- cgit