From 17b9b003a9403af4be3cc8ba9659f4c423248cc3 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Fri, 9 Aug 2024 18:18:48 +0200 Subject: [PATCH] feat: open ports for opnsense --- hosts/server/configuration.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hosts/server/configuration.nix b/hosts/server/configuration.nix index cdfb185..facdb6b 100644 --- a/hosts/server/configuration.nix +++ b/hosts/server/configuration.nix @@ -147,11 +147,13 @@ # Open ports in the firewall. networking.firewall.allowedTCPPorts = [ 22 # ssh - 7791 # pixelflut - 7792 # flutties website + 80 # http (opnsense) + 443 # https (opnsense) ]; networking.firewall.allowedUDPPorts = [ 22 # ssh + 80 # http (opnsense) + 443 # https (opnsense) ]; # Or disable the firewall altogether. # networking.firewall.enable = false;