From 0c901180d9285a11d8243bc66f0c3a219f6a5836 Mon Sep 17 00:00:00 2001 From: Thomas Kendrick Date: Fri, 19 Dec 2025 22:44:08 +0000 Subject: [PATCH] fix: outpost router --- access_management/authentik/docker-compose.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/access_management/authentik/docker-compose.yml b/access_management/authentik/docker-compose.yml index d0404f5..02da1ba 100644 --- a/access_management/authentik/docker-compose.yml +++ b/access_management/authentik/docker-compose.yml @@ -61,6 +61,11 @@ services: traefik.http.routers.authentik.entrypoints: "https" traefik.http.routers.authentik.tls.certresolver: "cloudflare" traefik.http.services.authentik.loadbalancer.server.port: "9000" + # Authentik Outpost (Handling auth callbacks for all domains) + traefik.http.routers.authentik-outpost.rule: "HostRegexp(`{host:.+}`) && PathPrefix(`/outpost.goauthentik.io/`)" + traefik.http.routers.authentik-outpost.entrypoints: "https" + traefik.http.routers.authentik-outpost.tls.certresolver: "cloudflare" + traefik.http.routers.authentik-outpost.service: "authentik" # Homepage homepage.group: "Management" homepage.name: "Authentik"