diff --git a/authentik/providers/proxy/controllers/docker.py b/authentik/providers/proxy/controllers/docker.py index aab1327fec..5caca6c8f6 100644 --- a/authentik/providers/proxy/controllers/docker.py +++ b/authentik/providers/proxy/controllers/docker.py @@ -28,7 +28,7 @@ class ProxyDockerController(DockerController): labels = super()._get_labels() labels["traefik.enable"] = "true" labels[f"traefik.http.routers.{traefik_name}-router.rule"] = ( - f"({' || '.join([f'Host(`{host}`)' for host in hosts])})" + f"({' || '.join([f'Host({host})' for host in hosts])})" f" && PathPrefix(`/outpost.goauthentik.io`)" ) labels[f"traefik.http.routers.{traefik_name}-router.tls"] = "true"