qbittorrent: enable queueing and AutoTMM

This commit is contained in:
2026-02-19 18:27:59 -05:00
parent 32861ee048
commit f914dc00ca
3 changed files with 11 additions and 6 deletions

View File

@@ -48,7 +48,7 @@
serverConfig.BitTorrent = {
Session = {
MaxConnectionsPerTorrent = 10;
MaxConnectionsPerTorrent = 100;
MaxUploadsPerTorrent = 10;
MaxConnections = -1;
MaxUploads = -1;
@@ -56,9 +56,10 @@
MaxActiveCheckingTorrents = 5;
# queueing
QueueingSystemEnabled = false;
MaxActiveDownloads = 2; # num of torrents that can download at the same time
MaxActiveUploads = 20;
QueueingSystemEnabled = true;
MaxActiveDownloads = 8; # num of torrents that can download at the same time
MaxActiveUploads = -1;
MaxActiveTorrents = -1;
IgnoreSlowTorrentsForQueueing = true;
GlobalUPSpeedLimit = 0;
@@ -86,6 +87,11 @@
# how many connections per sec
ConnectionSpeed = 300;
# Automatic Torrent Management: use category save paths for new torrents
DisableAutoTMMByDefault = false;
DisableAutoTMMTriggers.CategorySavePathChanged = false;
DisableAutoTMMTriggers.DefaultSavePathChanged = false;
ChokingAlgorithm = "RateBased";
PieceExtentAffinity = true;
SuggestMode = true;