mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-19 09:15:30 +03:00
16 lines
302 B
Text
16 lines
302 B
Text
#!/sbin/openrc-run
|
|
supervisor=supervise-daemon
|
|
|
|
name=Traefik
|
|
description="Traefik - a modern reverse proxy"
|
|
|
|
command=/usr/sbin/traefik
|
|
command_args="${traefik_opts}"
|
|
command_user="traefik:traefik"
|
|
pidfile=/run/${RC_SVCNAME}.pid
|
|
|
|
healthcheck_timer=60
|
|
|
|
healthcheck() {
|
|
$command healthcheck >/dev/null
|
|
}
|