diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-09-23 12:55:25 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-09-23 12:55:25 +0200 |
commit | 84411d40b7b8d098bd7fa16ceba05ad4b8d62de3 (patch) | |
tree | 0ba783a39ba4642d7ae65a4a06ea2b7a858808cb | |
parent | SSH: Add own authorized_keys (diff) | |
download | nixos-config-84411d40b7b8d098bd7fa16ceba05ad4b8d62de3.tar.gz nixos-config-84411d40b7b8d098bd7fa16ceba05ad4b8d62de3.tar.bz2 nixos-config-84411d40b7b8d098bd7fa16ceba05ad4b8d62de3.zip |
Firewall: Allow tcp:80
-rw-r--r-- | hosts/configuration.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix index f8d6437..3f2def7 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -42,7 +42,7 @@ nameservers = [ "9.9.9.9" ]; firewall = { enable = true; - allowedTCPPorts = [ 2222 ]; + allowedTCPPorts = [ 80 2222 ]; # networking.firewall.allowedUDPPorts = [ ... ]; # Or disable the firewall altogether. }; |