Skip to content

Commit

Permalink
removed root domain route
Browse files Browse the repository at this point in the history
  • Loading branch information
joshrnoll committed Nov 18, 2024
1 parent 48bb262 commit 53d7fd7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions containers/authentik/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
traefik.http.services.authentik-svc.loadbalancer.server.scheme: "http"
traefik.http.services.authentik-svc.loadbalancer.server.port: "9000"
# Router for Authentik web page
traefik.http.routers.authentik-server.rule: "Host(`authentik.{{ domain_name }}`) || Host(`{{ domain_name }}`)"
traefik.http.routers.authentik-server.rule: "Host(`authentik.{{ domain_name }}`)"
traefik.http.routers.authentik-server.entrypoints: "https"
traefik.http.routers.authentik-server.tls: "true"
traefik.http.routers.authentik-server.tls.certresolver: "cloudflare"
Expand Down Expand Up @@ -173,8 +173,8 @@

- name: Create/update Cloudflare DNS record
community.general.cloudflare_dns:
zone: "authentik.{{ domain_name }}"
record: "@"
zone: "{{ domain_name }}"
record: "authentik.{{ domain_name }}"
type: A
value: "{{ traefik_ip[0] }}"
solo: true
Expand Down

0 comments on commit 53d7fd7

Please sign in to comment.