diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-15 10:10:28 -0400 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-15 10:10:28 -0400 |
commit | c41d7a97ae6d543dacfb40260e9d360acdf35370 (patch) | |
tree | 59b66ce74ee645558761a91debfb2892d8b4def3 | |
parent | 38f367edeb21e222cbc185b21fdc14b2b86de4c1 (diff) |
owo: disallow ports 80 & 443
-rw-r--r-- | machines/owo/configuration.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/machines/owo/configuration.nix b/machines/owo/configuration.nix index 162fa63..ad70179 100644 --- a/machines/owo/configuration.nix +++ b/machines/owo/configuration.nix @@ -20,7 +20,7 @@ networking.firewall = { enable = lib.mkForce true; - allowedTCPPorts = [ 80 443 22 ]; + allowedTCPPorts = [ 22 ]; }; programs.fuse.userAllowOther = true; |