mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
14 lines
251 B
Plaintext
14 lines
251 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
name="Caddy webserver"
|
|
command="/usr/sbin/caddy"
|
|
command_args="$CADDY_OPTS"
|
|
pidfile="/var/run/caddy.pid"
|
|
command_background=yes
|
|
start_stop_daemon_args="--user caddy --group caddy"
|
|
|
|
depend() {
|
|
need net localmount
|
|
after firewall
|
|
}
|