From 255dd70855afcd266f73801f433a3c117fd002ba Mon Sep 17 00:00:00 2001 From: Christine Elisabeth Koppel Date: Thu, 19 Mar 2026 23:38:19 +0100 Subject: [PATCH] Add additional ports to firewall configuration for Traefik --- nix-system-configs/modules/system/traefik.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix-system-configs/modules/system/traefik.nix b/nix-system-configs/modules/system/traefik.nix index af4fae0..ae450e8 100644 --- a/nix-system-configs/modules/system/traefik.nix +++ b/nix-system-configs/modules/system/traefik.nix @@ -882,8 +882,8 @@ in { }; }; - networking.firewall.allowedTCPPorts = [80 443 10022 30033 8448 9001 3001 993 465 25]; - networking.firewall.allowedUDPPorts = [80 443 9987 9001 3001 993 465 25]; + networking.firewall.allowedTCPPorts = [80 443 10022 30033 8448 9001 3001 993 465 25 25565 24454]; + networking.firewall.allowedUDPPorts = [80 443 9987 9001 3001 993 465 25 25565 24454]; system.stateVersion = "25.11"; };