summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederick Yin <fkfd@fkfd.me>2021-11-25 07:53:25 +0800
committerFrederick Yin <fkfd@fkfd.me>2021-11-25 07:53:25 +0800
commit3847d0479192f3150df19affe8d8712f83167ac8 (patch)
tree0e14b31dffd40292f81264854b892a2f72521984
parent8a1b86bb03c1a3df475fff72900b4a757033d872 (diff)
Add systemd services
-rw-r--r--init/jimbrella-routine.service12
-rw-r--r--init/jimbrella-web.service16
2 files changed, 28 insertions, 0 deletions
diff --git a/init/jimbrella-routine.service b/init/jimbrella-routine.service
new file mode 100644
index 0000000..b641028
--- /dev/null
+++ b/init/jimbrella-routine.service
@@ -0,0 +1,12 @@
+[Unit]
+Description=JImbrella routine
+
+[Service]
+User=jim
+Type=oneshot
+WorkingDirectory=/opt/jimbrella
+ExecStart=python3 -m jimbrella.routine
+RemainAfterExit=true
+
+[Install]
+WantedBy=multi-user.target
diff --git a/init/jimbrella-web.service b/init/jimbrella-web.service
new file mode 100644
index 0000000..3de7deb
--- /dev/null
+++ b/init/jimbrella-web.service
@@ -0,0 +1,16 @@
+[Unit]
+Description=JImbrella uWSGI
+After=syslog.target
+
+[Service]
+User=jim
+WorkingDirectory=/opt/jimbrella
+ExecStart=/usr/local/bin/uwsgi -s 127.0.0.1:5000 --manage-script-name --module jimbrella.web --callable app
+Restart=always
+KillSignal=SIGQUIT
+Type=notify
+StandardError=syslog
+NotifyAccess=all
+
+[Install]
+WantedBy=multi-user.target