22 lines
615 B
SYSTEMD
22 lines
615 B
SYSTEMD
|
|
[Unit]
|
||
|
|
Description=Seller Central Backend Service
|
||
|
|
After=network.target
|
||
|
|
|
||
|
|
[Service]
|
||
|
|
User=ubuntu
|
||
|
|
WorkingDirectory=/home/ubuntu/seller_central_backend
|
||
|
|
EnvironmentFile=/home/ubuntu/seller_central_backend/.env
|
||
|
|
ExecStart=/home/ubuntu/seller_central_backend/venv/bin/gunicorn config.wsgi:application \
|
||
|
|
--bind 0.0.0.0:8080 \
|
||
|
|
--workers 3 \
|
||
|
|
--access-logfile /home/ubuntu/seller_central_backend/logs/gunicorn-access.log \
|
||
|
|
--error-logfile /home/ubuntu/seller_central_backend/logs/gunicorn-error.log \
|
||
|
|
--log-level info \
|
||
|
|
--capture-output
|
||
|
|
|
||
|
|
Restart=always
|
||
|
|
RestartSec=5
|
||
|
|
|
||
|
|
[Install]
|
||
|
|
WantedBy=multi-user.target
|