diff options
author | Georg | 2021-07-21 12:34:32 +0200 |
---|---|---|
committer | Georg | 2021-07-21 12:34:32 +0200 |
commit | a7b59a951b5b884bb2ba0fd1105918d2d5150fcd (patch) | |
tree | 5e906079ed4d34c928722aba17225b2894f4f293 /systemd/flask_libertacasa.service | |
parent | 8e5f49e946dfbe915301894390a8105d88cd40f3 (diff) | |
download | system-a7b59a951b5b884bb2ba0fd1105918d2d5150fcd.tar.gz system-a7b59a951b5b884bb2ba0fd1105918d2d5150fcd.tar.bz2 system-a7b59a951b5b884bb2ba0fd1105918d2d5150fcd.zip |
Initial Systemd Service Run: 1/3
Signed-off-by: Georg <georg@lysergic.dev>
Diffstat (limited to 'systemd/flask_libertacasa.service')
-rw-r--r-- | systemd/flask_libertacasa.service | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/systemd/flask_libertacasa.service b/systemd/flask_libertacasa.service new file mode 100644 index 0000000..21af2e3 --- /dev/null +++ b/systemd/flask_libertacasa.service @@ -0,0 +1,17 @@ +[Unit] +Description=Liberta.Casa Flask / Webregistration for IRCd +After=network.target + +[Service] +WorkingDirectory=/mnt/gluster01/web/liberta.casa/flask +Environment="PATH=/mnt/gluster01/web/liberta.casa/flask/.local/bin" +Type=simple +ExecStart=/mnt/gluster01/web/liberta.casa/flask/.local/bin/gunicorn -b localhost:8965 -w 3 flaskapp:app +ExecReload=/bin/kill -HUP $MAINPID +Restart=always +User=flask +Group=flask +SyslogIdentifier=flask-lc + +[Install] +WantedBy=multi-user.target |