From 158bfad61c1e01d67bdb6b2f77245bbc3aeeb91f Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Wed, 7 Jan 2026 23:20:51 -0500 Subject: [PATCH] fix ports --- systems/palatine-hill/docker/torr.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/systems/palatine-hill/docker/torr.nix b/systems/palatine-hill/docker/torr.nix index f7bf3a6..f999ca9 100644 --- a/systems/palatine-hill/docker/torr.nix +++ b/systems/palatine-hill/docker/torr.nix @@ -17,6 +17,7 @@ let qbit_path = "${torr_path}/qbit"; qbitvpn_path = "${torr_path}/qbitvpn"; qbitperm_path = "${torr_path}/qbitperm"; + data_path = "${torr_path}/data"; in { @@ -25,15 +26,17 @@ in # webui port is 8082, torr port is 29432 environment = qbitBase.environment // { WEBUI_PORT = "8082"; + TORRENTING_PORT = "29432"; }; volumes = [ "${qbit_path}/config:/config" # move from docker/qbit to qbit_path - "${qbit_path}/data/:/data" + "${data_path}/data/:/data" "/etc/localtime:/etc/localtime:ro" ]; ports = [ "8082:8082" "29432:29432" + "29432:29432/udp" ]; }; qbitVPN = qbitBase // { @@ -47,7 +50,7 @@ in dependsOn = [ "gluetun-qbit" ]; volumes = [ "${qbitvpn_path}/config:/config" - "${qbit_path}/data:/data" + "${data_path}/data:/data" "/etc/localtime:/etc/localtime:ro" ]; }; @@ -62,7 +65,7 @@ in dependsOn = [ "gluetun-qbit" ]; volumes = [ "${qbitperm_path}/config:/config" - "${qbit_path}/data:/data" + "${data_path}/data:/data" "/etc/localtime:/etc/localtime:ro" ]; };