mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
20 lines
388 B
Desktop File
20 lines
388 B
Desktop File
# /etc/systemd/system/veilid-server.service
|
|
|
|
[Unit]
|
|
Description=The Veilid peer-to-peer network server
|
|
Requires=network-online.target
|
|
After=network-online.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
ExecStart=/usr/bin/veilid-server
|
|
ExecReload=/bin/kill -s HUP $MAINPID
|
|
KillSignal=SIGQUIT
|
|
TimeoutStopSec=5
|
|
PrivateTmp=true
|
|
WorkingDirectory=/
|
|
User=veilid
|
|
Group=veilid
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |