summaryrefslogtreecommitdiff
path: root/com/simatime/dev
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2019-11-01 15:15:09 -0700
committerBen Sima <ben@bsima.me>2019-11-01 15:15:09 -0700
commit57fc0907c6d1e285cde6eb738bbbbb0cdd070956 (patch)
treed9f7da2994ef7c2b99db1b08941829fcd4953976 /com/simatime/dev
parent9a358e225378fa349aa8f0bb23ee0b4e8aab4cd7 (diff)
ensure torrent ports are open
Diffstat (limited to 'com/simatime/dev')
-rw-r--r--com/simatime/dev/configuration.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/com/simatime/dev/configuration.nix b/com/simatime/dev/configuration.nix
index 69a015f..c096f85 100644
--- a/com/simatime/dev/configuration.nix
+++ b/com/simatime/dev/configuration.nix
@@ -16,6 +16,10 @@
];
allowedTCPPortRanges = [
{ from = 3000; to = 3100; } # dev stuff
+ { from = 6000; to = 6999; } # torrents
+ ];
+ allowedUDPPortRanges = [
+ { from = 6000; to = 6999; } # torrents
];
checkReversePath = false;
};