26 lines
519 B
INI
26 lines
519 B
INI
|
# caddy-api.service
|
||
|
#
|
||
|
# For using Caddy with its API.
|
||
|
#
|
||
|
# This unit is "durable" in that it will automatically resume
|
||
|
# the last active configuration if the service is restarted.
|
||
|
|
||
|
[Unit]
|
||
|
Description=Caddy
|
||
|
Documentation=https://caddyserver.com/docs/
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
User=caddy
|
||
|
Group=caddy
|
||
|
ExecStart=/usr/bin/caddy run --environ --resume
|
||
|
TimeoutStopSec=5s
|
||
|
LimitNOFILE=1048576
|
||
|
LimitNPROC=512
|
||
|
PrivateTmp=true
|
||
|
ProtectSystem=full
|
||
|
AmbientCapabilities=CAP_NET_BIND_SERVICE
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|