diff options
| author | Baitinq <[email protected]> | 2022-09-23 12:55:25 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-09-23 12:55:25 +0200 |
| commit | 2e047be5ac390045911bb155cb4b5c562d09005b (patch) | |
| tree | 5f5e68039dc02503e9294417d5e7b80a905fed42 /hosts/configuration.nix | |
| parent | SSH: Add own authorized_keys (diff) | |
| download | nixos-config-2e047be5ac390045911bb155cb4b5c562d09005b.tar.gz nixos-config-2e047be5ac390045911bb155cb4b5c562d09005b.tar.bz2 nixos-config-2e047be5ac390045911bb155cb4b5c562d09005b.zip | |
Firewall: Allow tcp:80
Diffstat (limited to 'hosts/configuration.nix')
| -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. }; |