mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-16 05:11:59 +01:00
17 lines
351 B
Plaintext
17 lines
351 B
Plaintext
#!/sbin/openrc-run
|
|
supervisor=supervise-daemon
|
|
|
|
name="Traefik"
|
|
description="Modern reverse proxy and load balancer"
|
|
|
|
command="/usr/sbin/traefik"
|
|
command_args="$traefik_opts"
|
|
command_user="traefik:traefik"
|
|
|
|
description_healthcheck="Check health status by calling /ping endpoint"
|
|
healthcheck_timer=30
|
|
|
|
healthcheck() {
|
|
$command healthcheck >/dev/null
|
|
}
|