diff --git a/etc/installmgr.service b/etc/installmgr.service new file mode 100644 index 0000000..92c8746 --- /dev/null +++ b/etc/installmgr.service @@ -0,0 +1,26 @@ +# installmgr systemd service +# Flask based +# +# +# A copier dans /etc/systemd/system/ +# puis +# sudo systemctl daemon-reload +# sudo systemctl start scodoc9 +# +[Unit] +Description=Installmgr service for ScoDoc 9 +After=network.target +#Requires={{postgresql}} +#PartOf={{postgresql}} +#StartLimitIntervalSec=0 + +[Service] +User=scodoc +Group=scodoc +WorkingDirectory=/opt/installmgr +Environment=FLASK_RUN_PORT=8010 +ExecStart=/opt/installmgr/venv/bin/gunicorn -b localhost:8010 -w 1 installmgr:app +Restart=always + +[Install] +WantedBy=multi-user.target \ No newline at end of file