my-runtipi/_traefik/dynamic/_templates/rt.ha.yml.wolfpack

25 lines
653 B
Text
Raw Permalink Normal View History

2024-11-24 23:05:29 -05:00
# http routing section
http:
routers:
# Define a connection between requests and services
home-assistant:
2024-12-13 10:54:22 -05:00
rule: "Host(`ha.shefet.net`)"
2024-11-24 23:05:29 -05:00
entrypoints:
- websecure
# # If the rule matches, applies the middleware
2025-02-26 23:58:48 -05:00
# middlewares:
# - trustedHeaders
2024-11-24 23:05:29 -05:00
# If the rule matches, forward to the whoami service (declared below)
service: home-assistant
tls:
certresolver: myresolver
services:
# Define how to reach an existing service on our infrastructure
home-assistant:
loadBalancer:
servers:
- url: "http://ha.lan:8123"
#- address: "ha.lan:8123"
2025-02-26 23:58:48 -05:00