From 6a562e3d457e931b1cf5becbca7aa0f6642d3f5d Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sun, 8 Dec 2024 09:26:40 +0000 Subject: [PATCH] Add extra UDP ports for home-assistant --- system/services/home-assistant.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/system/services/home-assistant.nix b/system/services/home-assistant.nix index e86d4fb4..cd8b11b6 100644 --- a/system/services/home-assistant.nix +++ b/system/services/home-assistant.nix @@ -18,7 +18,11 @@ 1400 1443 ]; - allowedUDPPorts = [ 5353 ]; + allowedUDPPorts = [ + 1400 + 1443 + 5353 + ]; }; services.caddy.virtualHosts."home.xenia.me.uk".extraConfig = "reverse_proxy http://localhost:8123"; }