diff options
author | Ben Sima <ben@bsima.me> | 2019-01-22 16:51:14 -0800 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-01-25 15:11:10 -0800 |
commit | 6df74443f1aa37ae2609093db8e608663ef7bc9e (patch) | |
tree | 19c72f062f3efd1160ac58831101106012c22d58 | |
parent | cdc9a34ec47ce1adebd1ce3555589acc6cc2e32f (diff) |
Open ports 3000-3100
-rw-r--r-- | machines/lithium.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/machines/lithium.nix b/machines/lithium.nix index 4970b91..323d3e0 100644 --- a/machines/lithium.nix +++ b/machines/lithium.nix @@ -17,7 +17,8 @@ in }; firewall = { - allowedTCPPorts = [ 8096 22 8000 8443 443 500 10000 3000 8080 ]; + allowedTCPPorts = [ 8096 22 8000 8443 443 500 10000 8080 ]; + allowedTCPPortRanges = [ { from = 3000; to = 3100; } ]; checkReversePath = false; }; |