From 457471288d33e1e4a1baf1b6b66c76539873877a Mon Sep 17 00:00:00 2001 From: dvirlabs <114520947+dvirlabs@users.noreply.github.com> Date: Thu, 10 Jul 2025 17:57:25 +0300 Subject: [PATCH] Fix proxy for home-assist --- manifests/home-assistant/values.yaml | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/manifests/home-assistant/values.yaml b/manifests/home-assistant/values.yaml index 77fd702..0b09844 100644 --- a/manifests/home-assistant/values.yaml +++ b/manifests/home-assistant/values.yaml @@ -26,10 +26,28 @@ ingress: configuration: enabled: true - forceInit: true # Optional – forces merging with template on every start + forceInit: true trusted_proxies: - 10.0.0.0/8 - 192.168.0.0/16 - 172.16.0.0/12 - - 127.0.0.1/8 - - 10.42.0.0/16 # Your K3s pod CIDR + - 127.0.0.0/8 + - 10.42.0.0/16 + templateConfig: |- + default_config: + + http: + use_x_forwarded_for: true + trusted_proxies: + - 10.0.0.0/8 + - 192.168.0.0/16 + - 172.16.0.0/12 + - 127.0.0.0/8 + - 10.42.0.0/16 + + frontend: + themes: !include_dir_merge_named themes + + automation: !include automations.yaml + script: !include scripts.yaml + scene: !include scenes.yaml