From 9c632e08762ea9ee6efb44001ba37ca06467d1dd Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Tue, 3 Mar 2026 20:19:05 -0500 Subject: [PATCH] syncthing: forgot about UDP protocol --- services/syncthing.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/services/syncthing.nix b/services/syncthing.nix index 33d03ee..a7cf2bf 100644 --- a/services/syncthing.nix +++ b/services/syncthing.nix @@ -43,7 +43,10 @@ # Open firewall ports for syncthing protocol networking.firewall = { allowedTCPPorts = [ service_configs.ports.syncthing_protocol ]; - allowedUDPPorts = [ service_configs.ports.syncthing_discovery ]; + allowedUDPPorts = [ + service_configs.ports.syncthing_discovery + service_configs.ports.syncthing_protocol + ]; }; services.caddy.virtualHosts."syncthing.${service_configs.https.domain}".extraConfig = ''