change qBittorrent torrent port from 6881 to 50000
Port 6881 is blacklisted by MAM and throttled by ISPs. Also added pfSense NAT rule for 50000 TCP+UDP → 10.0.20.200.
This commit is contained in:
parent
8afa6c1e7f
commit
009f4b3b89
1 changed files with 5 additions and 5 deletions
|
|
@ -78,7 +78,7 @@ resource "kubernetes_deployment" "qbittorrent" {
|
|||
}
|
||||
env {
|
||||
name = "TORRENTING_PORT"
|
||||
value = 6881
|
||||
value = 50000
|
||||
}
|
||||
volume_mount {
|
||||
name = "data"
|
||||
|
|
@ -159,14 +159,14 @@ resource "kubernetes_service" "qbittorrent-torrenting" {
|
|||
}
|
||||
port {
|
||||
name = "torrenting"
|
||||
port = 6881
|
||||
target_port = 6881
|
||||
port = 50000
|
||||
target_port = 50000
|
||||
}
|
||||
port {
|
||||
name = "torrenting-udp"
|
||||
port = 6881
|
||||
port = 50000
|
||||
protocol = "UDP"
|
||||
target_port = 6881
|
||||
target_port = 50000
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue