1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-09-19 18:31:16 +00:00

Add systemd service file

This commit is contained in:
Mo 2022-04-20 02:12:19 +02:00
parent 598c08545b
commit 6322697ac4

13
scripts/gunicorn.service Normal file
View file

@ -0,0 +1,13 @@
[Unit]
Description=Gunicorn - AdvLabDB
After=network.target
[Service]
User=admin
Group=admin
WorkingDirectory=/home/admin/advlabdb
ExecStart=/home/admin/.local/bin/poetry run gunicorn --workers 5 --bind unix:gunicorn.sock --umask 007 --log-file /var/log/advlabdb/gunicorn.log run:app
Restart=always
[Install]
WantedBy=multi-user.target