Open additional torrent port
This commit is contained in:
parent
8622e9d4f3
commit
8a00748447
@ -17,7 +17,8 @@ let
|
|||||||
wireguard_udp = 1194;
|
wireguard_udp = 1194;
|
||||||
|
|
||||||
# TCP/UDP services
|
# TCP/UDP services
|
||||||
transmission = 51413;
|
torrent_a = 51413;
|
||||||
|
torrent_b = 51414;
|
||||||
|
|
||||||
# grouping
|
# grouping
|
||||||
open_tcp_ports = lib.concatMapStringsSep "," (x: toString x) [
|
open_tcp_ports = lib.concatMapStringsSep "," (x: toString x) [
|
||||||
@ -26,11 +27,13 @@ let
|
|||||||
https_tcp
|
https_tcp
|
||||||
synapse_tcp
|
synapse_tcp
|
||||||
gitea_tcp
|
gitea_tcp
|
||||||
transmission
|
torrent_a
|
||||||
|
torrent_b
|
||||||
];
|
];
|
||||||
open_udp_ports = lib.concatMapStringsSep "," (x: toString x) [
|
open_udp_ports = lib.concatMapStringsSep "," (x: toString x) [
|
||||||
wireguard_udp
|
wireguard_udp
|
||||||
transmission
|
torrent_a
|
||||||
|
torrent_b
|
||||||
];
|
];
|
||||||
open_tcp_ports_vpn = lib.concatMapStringsSep "," (x: toString x) [
|
open_tcp_ports_vpn = lib.concatMapStringsSep "," (x: toString x) [
|
||||||
ssh_tcp
|
ssh_tcp
|
||||||
|
Loading…
Reference in New Issue
Block a user