23 lines
458 B
SYSTEMD
23 lines
458 B
SYSTEMD
|
|
[Unit]
|
||
|
|
Description=Draupnir Matrix Moderation Bot
|
||
|
|
After=network.target
|
||
|
|
Wants=network-online.target
|
||
|
|
|
||
|
|
[Service]
|
||
|
|
Type=simple
|
||
|
|
User=root
|
||
|
|
WorkingDirectory=/opt/draupnir
|
||
|
|
ExecStart=/usr/bin/node /opt/draupnir/lib/index.js --draupnir-config /opt/draupnir/config/production.yaml
|
||
|
|
Restart=on-failure
|
||
|
|
RestartSec=10
|
||
|
|
StandardOutput=journal
|
||
|
|
StandardError=journal
|
||
|
|
SyslogIdentifier=draupnir
|
||
|
|
|
||
|
|
# Resource limits
|
||
|
|
MemoryMax=512M
|
||
|
|
CPUQuota=80%
|
||
|
|
|
||
|
|
[Install]
|
||
|
|
WantedBy=multi-user.target
|