19 lines
584 B
YAML
19 lines
584 B
YAML
# traefik_dynamic.yml
|
|
http:
|
|
routers:
|
|
traefik-dashboard:
|
|
entryPoints:
|
|
- dashboard
|
|
rule: "Host(`localhost`) && (PathPrefix(`/dashboard`) || PathPrefix(`/`))"
|
|
service: "api@internal"
|
|
middlewares:
|
|
- dashboard-auth
|
|
|
|
middlewares:
|
|
dashboard-auth:
|
|
basicAuth:
|
|
# replace the example hash below with a hash you generate (see step 3)
|
|
users:
|
|
- "admin:$2y$05$8CZrANjYoKRm5VG6QO8kseVpumnDXnLDU2vREgfMm9F/JdsTpq.iy"
|
|
- "Sterl:$2y$05$t8LnSDA190LOs2Wpmbt/p.7dFHzZKDT4BMLjSjqsxg0i6re5I9wlm"
|