diff options
author | Jasper Ras <jaspert.ras@gmail.com> | 2024-11-09 17:39:26 +0100 |
---|---|---|
committer | Jasper Ras <jaspert.ras@gmail.com> | 2024-11-09 17:39:30 +0100 |
commit | 59efaa5a44ffc9bcc68d0538d7b2fc9fbbb7e06d (patch) | |
tree | ed5821e19928c87739feb4b255b022710016cbfa | |
parent | 94b525dd507b7f809ec6f9664817dabba6b1cf4d (diff) |
networking: open tcp port 8000
-rw-r--r-- | networking.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking.nix b/networking.nix index 2eb5ade..9013a3e 100644 --- a/networking.nix +++ b/networking.nix @@ -22,7 +22,7 @@ # from: https://help.ui.com/hc/en-us/articles/218506997-Required-Ports-Reference # best put it in a var somewhere - networking.firewall.allowedTCPPorts = [ 53 8080 443 8443 8880 8843 6789 27117 ]; + networking.firewall.allowedTCPPorts = [ 53 8080 8000 443 8443 8880 8843 6789 27117 ]; networking.firewall.allowedUDPPorts = [ 53 3478 5514 10001 1900 123]; networking.firewall.allowedUDPPortRanges = [ { from = 5656; to = 5699; } ]; } |