From 10ee5ca2c212fa2d24393d31f15db9563b86b266 Mon Sep 17 00:00:00 2001 From: Gerg-L Date: Wed, 21 Aug 2024 18:13:17 -0400 Subject: [PATCH] update proxy ports --- hosts/proxy/server.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/hosts/proxy/server.nix b/hosts/proxy/server.nix index 0031e22..33f1ba4 100644 --- a/hosts/proxy/server.nix +++ b/hosts/proxy/server.nix @@ -1,9 +1,11 @@ { - networking.firewall.allowedTCPPorts = [ - 25565 - 25575 - 24454 - ]; + networking.firewall = { + allowedUDPPorts = [ 24454 ]; + allowedTCPPorts = [ + 25565 + 25575 + ]; + }; services.nginx = { enable = true; config = ''