From b7aed1afb145f74c96502941824418db626005ee Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Tue, 7 Apr 2026 00:56:10 +0200 Subject: [PATCH] fix: explicitly set service=logto on default tenant router Traefik couldn't auto-link the logto router when two services (logto, logto-console) exist on the same container. This broke ALL default tenant routing (sign-in, OIDC, API). Co-Authored-By: Claude Opus 4.6 (1M context) --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index 8948c61..761d87e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -82,6 +82,7 @@ services: - traefik.http.routers.logto.priority=1 - traefik.http.routers.logto.entrypoints=websecure - traefik.http.routers.logto.tls=true + - traefik.http.routers.logto.service=logto - traefik.http.routers.logto.middlewares=logto-cors - traefik.http.middlewares.logto-cors.headers.accessControlAllowOriginList=${PUBLIC_PROTOCOL:-https}://${PUBLIC_HOST:-localhost}:3002 - traefik.http.middlewares.logto-cors.headers.accessControlAllowMethods=GET,POST,PUT,PATCH,DELETE,OPTIONS