From 8a9339f00f444ac1bda394dd6208c41e2a782839 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Thu, 12 Feb 2026 14:52:10 +0100 Subject: [PATCH] fix(ci): set high priority for Traefik routers to avoid 404 --- docker-compose.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker-compose.yaml b/docker-compose.yaml index 4a99ab3..5a1549d 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -12,6 +12,7 @@ services: - "traefik.http.routers.${PROJECT_NAME}.entrypoints=websecure" - "traefik.http.routers.${PROJECT_NAME}.tls.certresolver=le" - "traefik.http.routers.${PROJECT_NAME}.tls=true" + - "traefik.http.routers.${PROJECT_NAME}.priority=1000" - "traefik.http.services.${PROJECT_NAME}.loadbalancer.server.port=3000" - "traefik.http.routers.${PROJECT_NAME}.middlewares=${TRAEFIK_MIDDLEWARES:-${PROJECT_NAME}-auth,${PROJECT_NAME}-forward,compress}" - "traefik.docker.network=infra" @@ -25,6 +26,7 @@ services: - "traefik.http.routers.${PROJECT_NAME}-gatekeeper.entrypoints=websecure" - "traefik.http.routers.${PROJECT_NAME}-gatekeeper.tls.certresolver=le" - "traefik.http.routers.${PROJECT_NAME}-gatekeeper.tls=true" + - "traefik.http.routers.${PROJECT_NAME}-gatekeeper.priority=2000" - "traefik.http.routers.${PROJECT_NAME}-gatekeeper.service=${PROJECT_NAME}-gatekeeper" - "traefik.http.middlewares.${PROJECT_NAME}-auth.forwardauth.address=http://${PROJECT_NAME}-gatekeeper:3000/gatekeeper/api/verify" @@ -99,6 +101,7 @@ services: - "traefik.http.routers.${PROJECT_NAME}-directus.entrypoints=websecure" - "traefik.http.routers.${PROJECT_NAME}-directus.tls.certresolver=le" - "traefik.http.routers.${PROJECT_NAME}-directus.tls=true" + - "traefik.http.routers.${PROJECT_NAME}-directus.priority=1000" - "traefik.http.routers.${PROJECT_NAME}-directus.middlewares=${PROJECT_NAME}-forward,compress" - "traefik.http.services.${PROJECT_NAME}-directus.loadbalancer.server.port=8055" - "traefik.http.middlewares.${PROJECT_NAME}-forward.headers.customrequestheaders.X-Forwarded-Proto=https"