21 lines
465 B
SYSTEMD
21 lines
465 B
SYSTEMD
|
[Unit]
|
||
|
Description=NetBox WSGI Service
|
||
|
Documentation=https://netbox.readthedocs.io/en/stable/
|
||
|
After=network-online.target
|
||
|
Wants=network-online.target
|
||
|
|
||
|
[Service]
|
||
|
Type=simple
|
||
|
User=netbox
|
||
|
Group=netbox
|
||
|
PIDFile=/var/tmp/netbox.pid
|
||
|
WorkingDirectory=/opt/netbox/src
|
||
|
ExecStart=/opt/netbox/venv/bin/gunicorn --pid /var/tmp/netbox.pid --config /opt/netbox/gunicorn_config.py netbox.wsgi
|
||
|
|
||
|
Restart=on-failure
|
||
|
RestartSec=30
|
||
|
PrivateTmp=true
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|