about summary refs log tree commit diff
path: root/hosts/configuration.nix
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2022-09-23 12:55:25 +0200
committerBaitinq <manuelpalenzuelamerino@gmail.com>2022-09-23 12:55:25 +0200
commit2e047be5ac390045911bb155cb4b5c562d09005b (patch)
tree5f5e68039dc02503e9294417d5e7b80a905fed42 /hosts/configuration.nix
parentSSH: Add own authorized_keys (diff)
downloadnixos-config-2e047be5ac390045911bb155cb4b5c562d09005b.tar.gz
nixos-config-2e047be5ac390045911bb155cb4b5c562d09005b.tar.bz2
nixos-config-2e047be5ac390045911bb155cb4b5c562d09005b.zip
Firewall: Allow tcp:80
Diffstat (limited to '')
-rw-r--r--hosts/configuration.nix2
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.
     };