add example systemd service

This commit is contained in:
Trent Palmer 2021-01-08 14:32:50 -08:00
parent 64ced70c50
commit d506798a13
1 changed files with 15 additions and 0 deletions

15
photo_app.service.example Normal file
View File

@ -0,0 +1,15 @@
[Unit]
Description=Photo Application
After=network.target
[Service]
User=<app_user>
Group=<app_user>
WorkingDirectory=/var/lib/<app_user>
Environment=FLASK_DEBUG=0
# apt-get install python3-gunicorn gunicorn
ExecStart=/usr/bin/gunicorn3 --access-logfile '-' -b 127.0.0.1:8200 -w 1 <app_user>:app
Restart=always
[Install]
WantedBy=multi-user.target