forked from infra/ansible
23 lines
572 B
Plaintext
23 lines
572 B
Plaintext
|
[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-{{ netbox_version }}
|
||
|
|
||
|
ExecStart=/opt/netbox-{{ netbox_version }}/venv/bin/gunicorn --pid /var/tmp/netbox.pid --pythonpath /opt/netbox-{{ netbox_version }}/netbox --config /opt/netbox-{{ netbox_version }}/gunicorn.py netbox.wsgi
|
||
|
|
||
|
Restart=on-failure
|
||
|
RestartSec=30
|
||
|
PrivateTmp=true
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|