Files
homelab/ansible/roles/traefik/defaults/main.yml
T
Adyrem 80a3250cf6 Add /mtg route to Traefik and Pi-hole DNS
Routes adyrem.duckdns.org/mtg → http://10.10.2.10:3000 (claude-code-vm)
with StripPrefix so the app sees requests at /.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-18 10:24:33 +02:00

28 lines
685 B
YAML

---
traefik_version: "3.3.4"
traefik_http_port: 80
traefik_https_port: 443
traefik_dashboard_port: 8080
traefik_log_level: "INFO"
traefik_acme_email: "fanfohcd@gmail.com"
traefik_services:
- name: gitea
host: "gitea.homelab"
backend: "http://10.10.1.125:3000"
public_host: "adyrem.duckdns.org"
public_path: "/git"
strip_prefix: "/git"
- name: mtg
host: "mtg.homelab"
backend: "http://10.10.2.10:3000"
public_host: "adyrem.duckdns.org"
public_path: "/mtg"
strip_prefix: "/mtg"
- name: grafana
host: "grafana.homelab"
backend: "http://10.10.1.137:3000"
- name: pihole
host: "pihole.homelab"
backend: "http://10.10.1.2:80"