Files
homelab/ansible/roles/traefik/defaults/main.yml
T
Adyrem c707a7cceb
Ansible Lint / lint (push) Successful in 6s
Add Anki route and fix Jellyfin cache disk exhaustion
- Add adyrem.duckdns.org/Anki → claude-code VM:4002 via Traefik
- Add anki.homelab DNS entry to Pi-hole
- Mount Jellyfin transcode cache to /media/transcodes (HDD) instead of
  anonymous Docker volume on root disk; prevents root disk from filling up

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-19 15:02:21 +02:00

60 lines
1.6 KiB
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: devbox
host: "devbox.homelab"
backend: "http://10.10.2.10:4001"
public_host: "adyrem.duckdns.org"
- name: anki
host: "anki.homelab"
backend: "http://10.10.2.10:4002"
public_host: "adyrem.duckdns.org"
public_path: "/Anki"
strip_prefix: "/Anki"
- 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"
- name: jellyfin
host: "jellyfin.homelab"
backend: "http://10.10.1.50:8096"
- name: jellyseerr
host: "jellyseerr.homelab"
backend: "http://10.10.1.50:5055"
- name: radarr
host: "radarr.homelab"
backend: "http://10.10.1.50:7878"
- name: sonarr
host: "sonarr.homelab"
backend: "http://10.10.1.50:8989"
- name: prowlarr
host: "prowlarr.homelab"
backend: "http://10.10.1.50:9696"
- name: qbittorrent
host: "qbittorrent.homelab"
backend: "http://10.10.1.50:5080"
- name: proxmox
host: "proxmox.homelab"
backend: "https://192.168.1.10:8006"
tls_skip_verify: true