add luser.service file to deb package and change README

This commit is contained in:
fram3d 2023-06-21 01:22:40 +02:00
parent 2abb42eb94
commit 359a20ea66
Signed by: fram3d
GPG Key ID: 938920E709EEA32A
2 changed files with 13 additions and 1 deletions

View File

@ -1,3 +1,3 @@
# Flask LDAP user management
Web app for adding,delating and modifying users using LDAP
Web app that allows users to add,remove and change passwords in LDAP system

View File

@ -0,0 +1,12 @@
[Unit]
Description=Gunicorn luser service
Documentation=man:gunicorn(1)
After=network.target nss-lookup.target
[Service]
WorkingDirectory=/var/luser/
ExecStart=/usr/bin/gunicorn --workers 3 --bind 127.0.0.1:5000 run:app
[Install]
WantedBy=multi-user.target