From 405a175d6bac7df637c15cce7183578dbe9ef612 Mon Sep 17 00:00:00 2001 From: zackartz Date: Fri, 3 May 2024 14:25:27 -0400 Subject: [PATCH] add 80, 443 ports --- hosts/pluto/configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/pluto/configuration.nix b/hosts/pluto/configuration.nix index 3b96281..4beb686 100644 --- a/hosts/pluto/configuration.nix +++ b/hosts/pluto/configuration.nix @@ -124,8 +124,8 @@ services.openssh.enable = true; # Open ports in the firewall. - # networking.firewall.allowedTCPPorts = [ ... ]; - # networking.firewall.allowedUDPPorts = [ ... ]; + networking.firewall.allowedTCPPorts = [80 443]; + networking.firewall.allowedUDPPorts = [80 443]; # Or disable the firewall altogether. # networking.firewall.enable = false;