[Answered ]-Django + gunicorn + systemd problems

2👍

Solved it, the Environment var in systemd unit file shouldn’t have quotes around it.

[Unit]
Description="Site"
After=network.target

[Service]
PIDFile=/tmp/pid-gunicorn
User=ubuntu
Group=users
Environment=PYTHONPATH=/home/ubuntu/templates/
WorkingDirectory=/home/ubuntu/gfa-apps/
ExecStart=/home/ubuntu/venv/bin/gunicorn --pid /tmp/pid-gunicorn site_gfa.wsgi:application -b 0.0.0.0:8083
PrivateTmp=true
Type=forking

[Install]
WantedBy=multi-user.target
👤gmccoy

Leave a comment