tellme/server/simplex-bot.service

14 lines
463 B
SYSTEMD
Raw Normal View History

2025-02-04 16:44:16 +01:00
[Unit]
Description=CGS Server
After=network.target
[Service]
User=cgsserver
WorkingDirectory=/opt/cgs/server
Environment=FLASK_CONFIG=production
ExecStart=/opt/cgs/server/venv/bin/gunicorn -b localhost:5000 --preload --workers={{ gunicorn_workers }} --threads={{ gunicorn_threads }} -t {{ gunicorn_timeout }} --access-logfile /var/log/cgsserver/access.log --error-logfile /var/log/cgsserver/error.log app:app
Restart=always
[Install]
WantedBy=multi-user.target