From 44f0aa4466e25a3e7b252cac75c54167cd760956 Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Fri, 8 Oct 2021 19:16:45 +0200 Subject: [PATCH] fix(home-assistant): add IPv6 trusted proxy --- services/home-assistant.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/home-assistant.nix b/services/home-assistant.nix index c08780c..eac4cf8 100644 --- a/services/home-assistant.nix +++ b/services/home-assistant.nix @@ -86,7 +86,7 @@ in { config = { }; http = { use_x_forwarded_for = true; - trusted_proxies = [ "127.0.0.1" ]; + trusted_proxies = [ "127.0.0.1" "::1" ]; }; "automation editor" = "!include automations.yaml"; automation = { };