mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-02 05:33:38 +08:00
18 lines
270 B
Plaintext
18 lines
270 B
Plaintext
description "Caddy startup script"
|
|
author "Mathias Beke"
|
|
|
|
start on runlevel [2345]
|
|
stop on runlevel [016]
|
|
|
|
|
|
setuid www-data
|
|
setgid www-data
|
|
|
|
respawn
|
|
respawn limit 10 5
|
|
|
|
limit nofile 4096 4096
|
|
|
|
script
|
|
exec /usr/bin/caddy -agree=true -conf=/etc/caddy/Caddyfile
|
|
end script |