customerwebsitebackend/customer-website-backend.service
vickytechkey d664f42966
All checks were successful
Deploy Beta (NATIVE) / deploy (push) Successful in 19s
fixed home page
2026-08-14 19:08:00 +05:30

21 lines
643 B
Desktop File

[Unit]
Description=Customer Website Backend Service
After=network.target
[Service]
User=ubuntu
WorkingDirectory=/home/ubuntu/customer_website_backend
EnvironmentFile=/home/ubuntu/customer_website_backend/.env
ExecStart=/home/ubuntu/customer_website_backend/venv/bin/gunicorn customerwebsitebackend.wsgi:application \
--bind 0.0.0.0:8082 \
--workers 3 \
--access-logfile /home/ubuntu/customer_website_backend/logs/gunicorn-access.log \
--error-logfile /home/ubuntu/customer_website_backend/logs/gunicorn-error.log \
--log-level info \
--capture-output
Restart=always
RestartSec=5
[Install]
WantedBy=multi-user.target