Skip to content

Commit

Permalink
fix: proxy provider - docker traefik label
Browse files Browse the repository at this point in the history
Signed-off-by: Diogo Andrade <143538553+dandrade-wave@users.noreply.github.com>
  • Loading branch information
dandrade-wave authored Sep 20, 2024
1 parent f386856 commit 73c9481
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion authentik/providers/proxy/controllers/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def _get_labels(self) -> dict[str, str]:
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"
Expand Down

0 comments on commit 73c9481

Please sign in to comment.