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:
Viktor Barzin 2026-03-25 12:29:00 +02:00
parent 8afa6c1e7f
commit 009f4b3b89

View file

@ -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
}
}
}