tellme/server/tellme.service

14 lines
370 B
SYSTEMD
Raw Normal View History

2025-02-04 16:44:16 +01:00
[Unit]
Description=Tellme Server
After=network.target
[Service]
User=cgsserver
WorkingDirectory=/opt/tellme
Environment=FLASK_CONFIG=production
2025-02-04 16:54:36 +01:00
ExecStart=gunicorn -b 0.0.0.0:8080 --preload --workers=1 --threads=1 -t 300 --access-logfile /var/log/tellme/access.log --error-logfile /var/log/tellme/error.log tellmesrv
2025-02-04 16:44:16 +01:00
Restart=always
[Install]
WantedBy=multi-user.target