From 80f14798188bd8a1c64d440d640fa258a051a464 Mon Sep 17 00:00:00 2001 From: Tobias Kussel Date: Thu, 26 Mar 2026 10:39:36 +0100 Subject: [PATCH] Update traefik dashboard routing rules Traefik uses the `/api` path for the internal api. For the dashboard to function, it needs to be routed, too. --- minimal/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minimal/docker-compose.yml b/minimal/docker-compose.yml index 159276a8..52a37aac 100644 --- a/minimal/docker-compose.yml +++ b/minimal/docker-compose.yml @@ -16,7 +16,7 @@ services: - --entrypoints.web.http.redirections.entrypoint.scheme=https labels: - "traefik.enable=true" - - "traefik.http.routers.dashboard.rule=PathPrefix(`/dashboard/`)" + - "traefik.http.routers.dashboard.rule=PathPrefix(`/dashboard/`)||PathPrefix(`/api`)" - "traefik.http.routers.dashboard.entrypoints=websecure" - "traefik.http.routers.dashboard.service=api@internal" - "traefik.http.routers.dashboard.tls=true"