17 lines
439 B
SYSTEMD
17 lines
439 B
SYSTEMD
|
[Unit]
|
||
|
Description=icinga2-statuspage
|
||
|
After=network.target
|
||
|
Requires=postgresql.service
|
||
|
|
||
|
[Service]
|
||
|
User=www-data
|
||
|
Group=www-data
|
||
|
Environment=APP_CONFIG=/opt/icinga2-statuspage/config.json
|
||
|
WorkingDirectory=/opt/icinga2-statuspage/src
|
||
|
ExecStart=/usr/bin/gunicorn statuspage:app --workers 4 --max-requests 1200 --max-requests-jitter 50 --log-level=info --bind=127.0.0.1:22110
|
||
|
Restart=always
|
||
|
RestartSec=10
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|