25 lines
571 B
Desktop File
25 lines
571 B
Desktop File
[Unit]
|
|
Description=Caddy webserver
|
|
After=network-online.target
|
|
Wants=network-online.target
|
|
|
|
[Service]
|
|
Type=forking
|
|
User=caddy
|
|
Group=caddy
|
|
ExecStartPre=/usr/bin/caddy validate --config /srv/www/Caddyfile
|
|
ExecStart=/usr/bin/caddy start --config /srv/www/Caddyfile
|
|
ExecReload=/usr/bin/caddy reload --config /srv/www/Caddyfile
|
|
ExecStop=/usr/bin/caddy stop
|
|
TimeoutStopSec=5s
|
|
LimitNOFILE=1048576
|
|
LimitNPROC=512
|
|
PrivateTmp=true
|
|
ProtectHome=full
|
|
ProtectSystem=full
|
|
AmbientCapabilities=CAP_NET_ADMIN CAP_NET_BIND_SERVICE
|
|
#RemainAfterExit=yes
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|