From 3b6111236f82f87d23a1aad5f34e7b1c10d602c5 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Thu, 26 Dec 2024 20:58:05 +0100 Subject: [PATCH] qbt: adjust settings --- services/qbittorrent.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/services/qbittorrent.nix b/services/qbittorrent.nix index 587a034..79169b1 100644 --- a/services/qbittorrent.nix +++ b/services/qbittorrent.nix @@ -50,8 +50,11 @@ serverConfig.BitTorrent.Session = { GlobalUPSpeedLimit = 50; # in KiB/s - GlobalDLSpeedLimit = 1000; # in KiB/s - IncludeOverheadInLimits = true; # make limits more accurate + GlobalDLSpeedLimit = 0; + + # Including overhead in limits ruins download because download + # uses upload to communicate with seeders + IncludeOverheadInLimits = false; GlobalMaxRatio = 6; QueueingSystemEnabled = false; # seed all torrents all the time };