crmbackend/crm-backend.service

22 lines
552 B
SYSTEMD
Raw Permalink Normal View History

2026-08-15 13:52:16 +00:00
[Unit]
Description=CRM Backend Service
After=network.target
[Service]
User=ubuntu
WorkingDirectory=/home/ubuntu/crmbackend
EnvironmentFile=/home/ubuntu/crmbackend/.env
ExecStart=/home/ubuntu/crmbackend/venv/bin/gunicorn digihoxbackend.wsgi:application \
--bind 0.0.0.0:8081 \
--workers 3 \
--access-logfile /home/ubuntu/crmbackend/logs/gunicorn-access.log \
--error-logfile /home/ubuntu/crmbackend/logs/gunicorn-error.log \
--log-level info \
--capture-output
Restart=always
RestartSec=5
[Install]
WantedBy=multi-user.target