-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconfig.example.toml
More file actions
1199 lines (840 loc) · 47.6 KB
/
config.example.toml
File metadata and controls
1199 lines (840 loc) · 47.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This is a config file for the qBitrr Script - Make sure to change all entries of "CHANGE_ME".
# This is a config file should be moved to "/home/qBitrr/.config".
[Settings]
# Internal config schema version - DO NOT MODIFY
# This is managed automatically by qBitrr for config migrations
ConfigVersion = "5.8.8"
# Level of logging; One of CRITICAL, ERROR, WARNING, NOTICE, INFO, DEBUG, TRACE
ConsoleLevel = "INFO"
# Enable logging to files
Logging = true
# Folder where your completed downloads are put into. Can be found in qBitTorrent -> Options -> Downloads -> Default Save Path (Please note, replace all '\' with '/')
CompletedDownloadFolder = "CHANGE_ME"
# The desired amount of free space in the downloads directory [K=kilobytes, M=megabytes, G=gigabytes, T=terabytes] (set to -1 to disable, this bypasses AutoPauseResume)
FreeSpace = "-1"
# Folder where the free space handler will check for free space (Please note, replace all '' with '/')
FreeSpaceFolder = "CHANGE_ME"
# Enable automation of pausing and resuming torrents as needed (Required enabled for the FreeSpace logic to function)
AutoPauseResume = true
# Time to sleep for if there is no internet (in seconds: 600 = 10 Minutes)
NoInternetSleepTimer = 15
# Time to sleep between reprocessing torrents (in seconds: 600 = 10 Minutes)
LoopSleepTimer = 5
# Time to sleep between posting search commands (in seconds: 600 = 10 Minutes)
SearchLoopDelay = -1
# Add torrents to this category to mark them as failed
FailedCategory = "failed"
# Add torrents to this category to trigger them to be rechecked properly
RecheckCategory = "recheck"
# Tagless operation
Tagless = false
# Ignore Torrents which are younger than this value (in seconds: 600 = 10 Minutes)
# Only applicable to Re-check and failed categories
IgnoreTorrentsYoungerThan = 180
# URL to be pinged to check if you have a valid internet connection
# These will be pinged a **LOT** make sure the service is okay with you sending all the continuous pings.
PingURLS = ["one.one.one.one", "dns.google.com"]
# FFprobe auto updates, binaries are downloaded from https://ffbinaries.com/downloads
# If this is disabled and you want ffprobe to work
# Ensure that you add the ffprobe binary to the folder"/home/qBitrr/.config/qBitManager/ffprobe.exe"
# If no `ffprobe` binary is found in the folder above all ffprobe functionality will be disabled.
# By default this will always be on even if config does not have these key - to disable you need to explicitly set it to `False`
FFprobeAutoUpdate = true
# Automatically attempt to update qBitrr on a schedule
# Set to true to enable the auto-update worker.
AutoUpdateEnabled = false
# Cron expression describing when to check for updates
# Default is weekly Sunday at 03:00 (0 3 * * 0).
AutoUpdateCron = "0 3 * * 0"
# Automatically restart worker processes that fail or crash
# Set to false to disable auto-restart (processes will only log failures)
AutoRestartProcesses = true
# Maximum number of restart attempts per process within the restart window
# Prevents infinite restart loops for processes that crash immediately
MaxProcessRestarts = 5
# Time window (seconds) for tracking restart attempts
# If a process restarts MaxProcessRestarts times within this window, auto-restart is disabled for that process
ProcessRestartWindow = 300
# Delay (seconds) before attempting to restart a failed process
ProcessRestartDelay = 5
[WebUI]
# WebUI listen host (default 0.0.0.0)
Host = "0.0.0.0"
# WebUI listen port (default 6969)
Port = 6969
# Optional bearer token to secure WebUI/API.
# Set a non-empty value to require Authorization: Bearer <token>.
Token = ""
# Disable all auth — set to false to require login (default true for backward compat)
AuthDisabled = true
# Set to true when the WebUI is reached over HTTPS (e.g. behind a reverse proxy).
# When true, the app trusts X-Forwarded-Proto and sets the session cookie as Secure. Leave false for plain HTTP.
BehindHttpsProxy = false
# Enable username/password login
LocalAuthEnabled = false
# Enable OIDC login
OIDCEnabled = false
# Username for local auth
Username = ""
# BCrypt password hash — set via the WebUI 'Set Password' button, never plain text
PasswordHash = ""
[WebUI.OIDC]
# OIDC issuer/authority URL (e.g. https://auth.example.com/application/o/qbitrr)
Authority = ""
# OAuth2 client ID
ClientId = ""
# OAuth2 client secret
ClientSecret = ""
# Space-separated OIDC scopes
Scopes = "openid profile"
# OIDC callback path (must match IdP redirect URI)
CallbackPath = "/signin-oidc"
# Require HTTPS for IdP metadata (set false only for local dev OIDC)
RequireHttpsMetadata = true
# Enable live updates for Arr views
LiveArr = true
# Group Sonarr episodes by series in views
GroupSonarr = true
# Group Lidarr albums by artist in views
GroupLidarr = true
# WebUI theme (Light or Dark)
Theme = "Dark"
# WebUI view density (Comfortable or Compact)
ViewDensity = "Comfortable"
[qBit]
# If this is enabled qBitrr can run in headless mode where it will only process searches.
# If media search is enabled in their individual categories
# This is useful if you use for example Sabnzbd/NZBGet for downloading content but still want the faster media searches provided by qbit
Disabled = false
# qbittorrent WebUI URL/IP - Can be found in Options > Web UI (called "IP Address")
Host = "CHANGE_ME"
# qbittorrent WebUI Port - Can be found in Options > Web UI (called "Port" on top right corner of the window)
Port = 8080
# qbittorrent WebUI Authentication - Can be found in Options > Web UI > Authentication
UserName = "CHANGE_ME"
# If you set "Bypass authentication on localhost or whitelisted IPs" remove this field.
Password = "CHANGE_ME"
# If true, do not verify TLS certificates for HTTPS WebUI (self-signed certs). Disables MITM protection for that connection.
SkipTLSVerify = false
# Categories managed directly by this qBit instance (not managed by Arr instances).
# These categories will have seeding settings applied according to CategorySeeding configuration.
# Example: ['downloads', 'private-tracker', 'long-term-seed']
ManagedCategories = []
# Shared tracker configs inherited by all Arr instances on this qBit instance.
# Define tracker-specific rate limits, HnR protection, and management rules here.
# Arr instances can optionally override per-tracker settings in their own Trackers section.
Trackers = []
[qBit.CategorySeeding]
# Download rate limit per torrent in KB/s (-1 = disabled)
DownloadRateLimitPerTorrent = -1
# Upload rate limit per torrent in KB/s (-1 = disabled)
UploadRateLimitPerTorrent = -1
# Maximum upload ratio (-1 = disabled, e.g. 2.0 for 200%)
MaxUploadRatio = -1
# Maximum seeding time in seconds (-1 = disabled, e.g. 604800 for 7 days)
MaxSeedingTime = -1
# When to remove torrents from qBittorrent:
# -1 = Never remove
# 1 = Remove when MaxUploadRatio is reached
# 2 = Remove when MaxSeedingTime is reached
# 3 = Remove when either condition is met (OR)
# 4 = Remove when both conditions are met (AND)
RemoveTorrent = -1
# Hit and Run mode: and = require both ratio and time; or = either clears; disabled = no HnR
HitAndRunMode = "disabled"
# Minimum seed ratio before removal allowed (HnR protection)
MinSeedRatio = 1.0
# Minimum seeding time in days before removal allowed (HnR protection, 0 = ratio only)
MinSeedingTimeDays = 0
# Minimum download percentage before a torrent is considered for HnR (0-100, default 10)
HitAndRunMinimumDownloadPercent = 10
# Minimum ratio for partial downloads (>=HitAndRunMinimumDownloadPercent% but <100% complete)
HitAndRunPartialSeedRatio = 1.0
# Extra seconds buffer for tracker stats lag (0 = disabled)
TrackerUpdateBuffer = 0
# Maximum time stalled downloads can sit before removal, in minutes (-1 = disabled, 0 = infinite)
StalledDelay = -1
# Ignore torrents younger than this (seconds). Stalled removal also requires last_activity older than this.
IgnoreTorrentsYoungerThan = 180
[Sonarr-TV]
# Toggle whether to manage the Servarr instance torrents.
Managed = true
# The URL used to access Servarr interface eg. http://ip:port(if you use a domain enter the domain without a port)
URI = "CHANGE_ME"
# The Servarr API Key, Can be found it Settings > General > Security
APIKey = "CHANGE_ME"
# If true, do not verify TLS for this Servarr API (HTTPS). Does not affect Overseerr/Ombi. Disables MITM protection for that connection.
SkipTLSVerify = false
# Category applied by Servarr to torrents in qBitTorrent, can be found in Settings > Download Clients > qBit > Category
Category = "sonarr-tv"
# Toggle whether to send a query to Servarr to search any failed torrents
ReSearch = true
# The Servarr's Import Mode(one of Move, Copy or Auto)
importMode = "Auto"
# Timer to call RSSSync (In minutes) - Set to 0 to disable (Values below 5 can cause errors for maximum retires)
RssSyncTimer = 1
# Timer to call RefreshDownloads to update the queue. (In minutes) - Set to 0 to disable (Values below 5 can cause errors for maximum retires)
RefreshDownloadsTimer = 1
# Error messages shown my the Arr instance which should be considered failures.
# This entry should be a list, leave it empty if you want to disable this error handling.
# If enabled qBitrr will remove the failed files and tell the Arr instance the download failed
ArrErrorCodesToBlocklist = ["Unable to determine if file is a sample", "Not an upgrade for existing episode file(s)", "Not a preferred word upgrade for existing episode file(s)"]
[Sonarr-TV.EntrySearch]
# Should search for Missing files?
SearchMissing = true
# Should search for specials episodes? (Season 00)
AlsoSearchSpecials = false
# Should search for unmonitored episodes/series?
Unmonitored = false
# Maximum allowed Searches at any one points (I wouldn't recommend settings this too high)
# Sonarr has a hardcoded cap of 3 simultaneous tasks
SearchLimit = 5
# It will order searches by the year the episode was first aired
SearchByYear = true
# Reverse search order (Start searching oldest to newest)
SearchInReverse = false
# Delay (in seconds) between checking for new Overseerr/Ombi requests. Does NOT affect delay between individual search commands (use Settings.SearchLoopDelay for that).
SearchRequestsEvery = 300
# Search media which already have a file in hopes of finding a better quality version.
DoUpgradeSearch = false
# Do a quality unmet search for existing entries.
QualityUnmetSearch = false
# Do a minimum custom format score unmet search for existing entries.
CustomFormatUnmetSearch = false
# Automatically remove torrents that do not mee the minimum custom format score.
ForceMinimumCustomFormat = false
# Once you have search all files on your specified year range restart the loop and search again.
SearchAgainOnSearchCompletion = true
# Use Temp profile for missing
UseTempForMissing = false
# Don't change back to main profile
KeepTempProfile = false
# Quality profile mappings for temp profile switching (Main Profile Name -> Temp Profile Name)
# Profile names must match exactly as they appear in your Arr instance
# Example: QualityProfileMappings = {"HD-1080p" = "SD", "HD-720p" = "SD"}
QualityProfileMappings = {}
# Reset all items using temp profiles to their original main profile on qBitrr startup
ForceResetTempProfiles = false
# Timeout in minutes after which items with temp profiles are automatically reset to main profile (0 = disabled)
TempProfileResetTimeoutMinutes = 0
# Number of retry attempts for profile switch API calls (default: 3)
ProfileSwitchRetryAttempts = 3
# Search mode: true (always series search), false (always episode search), or 'smart' (automatic)
# Smart mode: uses series search for entire seasons/series, episode search for single episodes
# (Series search ignores QualityUnmetSearch and CustomFormatUnmetSearch settings)
SearchBySeries = "smart"
# Prioritize Today's releases (Similar effect as RSS Sync, where it searches today's release episodes first, only works on Sonarr).
PrioritizeTodaysReleases = true
[Sonarr-TV.EntrySearch.Ombi]
# Search Ombi for pending requests (Will only work if 'SearchMissing' is enabled.)
SearchOmbiRequests = false
# Ombi URI eg. http://ip:port (Note that this has to be the instance of Ombi which manage the Arr instance request (If you have multiple Ombi instances)
OmbiURI = "CHANGE_ME"
# Ombi's API Key
OmbiAPIKey = "CHANGE_ME"
# Only process approved requests
ApprovedOnly = true
# If true, do not verify TLS for Ombi HTTPS (self-signed). Disables MITM protection.
SkipTLSVerify = false
[Sonarr-TV.EntrySearch.Overseerr]
# Search Overseerr for pending requests (Will only work if 'SearchMissing' is enabled.)
# If this and Ombi are both enable, Ombi will be ignored
SearchOverseerrRequests = false
# Overseerr's URI eg. http://ip:port
OverseerrURI = "CHANGE_ME"
# Overseerr's API Key
OverseerrAPIKey = "CHANGE_ME"
# Only process approved requests
ApprovedOnly = true
# If true, do not verify TLS for Overseerr HTTPS (self-signed). Disables MITM protection.
SkipTLSVerify = false
# Only for 4K Instances
# Only for 4K Instances
Is4K = false
[Sonarr-TV.Torrent]
# Set it to regex matches to respect/ignore case.
CaseSensitiveMatches = false
# These regex values will match any folder where the full name matches the specified values here, comma separated strings.
# These regex need to be escaped, that's why you see so many backslashes.
FolderExclusionRegex = ["\\bextras?\\b", "\\bfeaturettes?\\b", "\\bsamples?\\b", "\\bscreens?\\b", "\\bnc(ed|op)?(\\\\d+)?\\b"]
# These regex values will match any folder where the full name matches the specified values here, comma separated strings.
# These regex need to be escaped, that's why you see so many backslashes.
FileNameExclusionRegex = ["\\bncop\\\\d+?\\b", "\\bnced\\\\d+?\\b", "\\bsample\\b", "brarbg.com\\b", "\\btrailer\\b", "music video", "comandotorrents.com"]
# Only files with these extensions will be allowed to be downloaded, comma separated strings or regex, leave it empty to allow all extensions
FileExtensionAllowlist = [".mp4", ".mkv", ".sub", ".ass", ".srt", ".!qB", ".parts"]
# Auto delete files that can't be playable (i.e .exe, .png)
AutoDelete = false
# Ignore Torrents which are younger than this value (in seconds: 600 = 10 Minutes)
IgnoreTorrentsYoungerThan = 180
# Maximum allowed remaining ETA for torrent completion (in seconds: 3600 = 1 Hour)
# Note that if you set the MaximumETA on a tracker basis that value is favoured over this value
MaximumETA = -1
# Do not delete torrents with higher completion percentage than this setting (0.5 = 50%, 1.0 = 100%)
MaximumDeletablePercentage = 0.99
# Ignore slow torrents.
DoNotRemoveSlow = true
# Maximum allowed time for allowed stalled torrents in minutes (-1 = Disabled, 0 = Infinite)
StalledDelay = 15
# Re-search stalled torrents when StalledDelay is enabled and you want to re-search before removing the stalled torrent, or only after the torrent is removed.
ReSearchStalled = false
# Optional per-Arr tracker overrides. Trackers are inherited from qBit.Trackers by default.
# Add entries here only if this Arr instance needs different settings for a tracker (matched by URI).
Trackers = []
[Sonarr-TV.Torrent.SeedingMode]
# Set the maximum allowed download rate for torrents
# Set this value to -1 to disabled it
# Note that if you set the DownloadRateLimit on a tracker basis that value is favoured over this value
DownloadRateLimitPerTorrent = -1
# Set the maximum allowed upload rate for torrents
# Set this value to -1 to disabled it
# Note that if you set the UploadRateLimit on a tracker basis that value is favoured over this value
UploadRateLimitPerTorrent = -1
# Set the maximum allowed upload ratio for torrents
# Set this value to -1 to disabled it
# Note that if you set the MaxUploadRatio on a tracker basis that value is favoured over this value
MaxUploadRatio = -1
# Set the maximum seeding time in seconds for torrents
# Set this value to -1 to disabled it
# Note that if you set the MaxSeedingTime on a tracker basis that value is favoured over this value
MaxSeedingTime = -1
# Remove torrent condition (-1=Do not remove, 1=Remove on MaxUploadRatio, 2=Remove on MaxSeedingTime, 3=Remove on MaxUploadRatio or MaxSeedingTime, 4=Remove on MaxUploadRatio and MaxSeedingTime)
RemoveTorrent = -1
# Enable if you want to remove dead trackers
RemoveDeadTrackers = false
# If "RemoveDeadTrackers" is set to true then remove trackers with the following messages
RemoveTrackerWithMessage = ["skipping tracker announce (unreachable)", "No such host is known", "unsupported URL protocol", "info hash is not authorized with this tracker"]
[Sonarr-Anime]
# Toggle whether to manage the Servarr instance torrents.
Managed = true
# The URL used to access Servarr interface eg. http://ip:port(if you use a domain enter the domain without a port)
URI = "CHANGE_ME"
# The Servarr API Key, Can be found it Settings > General > Security
APIKey = "CHANGE_ME"
# If true, do not verify TLS for this Servarr API (HTTPS). Does not affect Overseerr/Ombi. Disables MITM protection for that connection.
SkipTLSVerify = false
# Category applied by Servarr to torrents in qBitTorrent, can be found in Settings > Download Clients > qBit > Category
Category = "sonarr-anime"
# Toggle whether to send a query to Servarr to search any failed torrents
ReSearch = true
# The Servarr's Import Mode(one of Move, Copy or Auto)
importMode = "Auto"
# Timer to call RSSSync (In minutes) - Set to 0 to disable (Values below 5 can cause errors for maximum retires)
RssSyncTimer = 1
# Timer to call RefreshDownloads to update the queue. (In minutes) - Set to 0 to disable (Values below 5 can cause errors for maximum retires)
RefreshDownloadsTimer = 1
# Error messages shown my the Arr instance which should be considered failures.
# This entry should be a list, leave it empty if you want to disable this error handling.
# If enabled qBitrr will remove the failed files and tell the Arr instance the download failed
ArrErrorCodesToBlocklist = ["Unable to determine if file is a sample", "Not an upgrade for existing episode file(s)", "Not a preferred word upgrade for existing episode file(s)"]
[Sonarr-Anime.EntrySearch]
# Should search for Missing files?
SearchMissing = true
# Should search for specials episodes? (Season 00)
AlsoSearchSpecials = false
# Should search for unmonitored episodes/series?
Unmonitored = false
# Maximum allowed Searches at any one points (I wouldn't recommend settings this too high)
# Sonarr has a hardcoded cap of 3 simultaneous tasks
SearchLimit = 5
# It will order searches by the year the episode was first aired
SearchByYear = true
# Reverse search order (Start searching oldest to newest)
SearchInReverse = false
# Delay (in seconds) between checking for new Overseerr/Ombi requests. Does NOT affect delay between individual search commands (use Settings.SearchLoopDelay for that).
SearchRequestsEvery = 300
# Search media which already have a file in hopes of finding a better quality version.
DoUpgradeSearch = false
# Do a quality unmet search for existing entries.
QualityUnmetSearch = false
# Do a minimum custom format score unmet search for existing entries.
CustomFormatUnmetSearch = false
# Automatically remove torrents that do not mee the minimum custom format score.
ForceMinimumCustomFormat = false
# Once you have search all files on your specified year range restart the loop and search again.
SearchAgainOnSearchCompletion = true
# Use Temp profile for missing
UseTempForMissing = false
# Don't change back to main profile
KeepTempProfile = false
# Quality profile mappings for temp profile switching (Main Profile Name -> Temp Profile Name)
# Profile names must match exactly as they appear in your Arr instance
# Example: QualityProfileMappings = {"HD-1080p" = "SD", "HD-720p" = "SD"}
QualityProfileMappings = {}
# Reset all items using temp profiles to their original main profile on qBitrr startup
ForceResetTempProfiles = false
# Timeout in minutes after which items with temp profiles are automatically reset to main profile (0 = disabled)
TempProfileResetTimeoutMinutes = 0
# Number of retry attempts for profile switch API calls (default: 3)
ProfileSwitchRetryAttempts = 3
# Search mode: true (always series search), false (always episode search), or 'smart' (automatic)
# Smart mode: uses series search for entire seasons/series, episode search for single episodes
# (Series search ignores QualityUnmetSearch and CustomFormatUnmetSearch settings)
SearchBySeries = "smart"
# Prioritize Today's releases (Similar effect as RSS Sync, where it searches today's release episodes first, only works on Sonarr).
PrioritizeTodaysReleases = true
[Sonarr-Anime.EntrySearch.Ombi]
# Search Ombi for pending requests (Will only work if 'SearchMissing' is enabled.)
SearchOmbiRequests = false
# Ombi URI eg. http://ip:port (Note that this has to be the instance of Ombi which manage the Arr instance request (If you have multiple Ombi instances)
OmbiURI = "CHANGE_ME"
# Ombi's API Key
OmbiAPIKey = "CHANGE_ME"
# Only process approved requests
ApprovedOnly = true
# If true, do not verify TLS for Ombi HTTPS (self-signed). Disables MITM protection.
SkipTLSVerify = false
[Sonarr-Anime.EntrySearch.Overseerr]
# Search Overseerr for pending requests (Will only work if 'SearchMissing' is enabled.)
# If this and Ombi are both enable, Ombi will be ignored
SearchOverseerrRequests = false
# Overseerr's URI eg. http://ip:port
OverseerrURI = "CHANGE_ME"
# Overseerr's API Key
OverseerrAPIKey = "CHANGE_ME"
# Only process approved requests
ApprovedOnly = true
# If true, do not verify TLS for Overseerr HTTPS (self-signed). Disables MITM protection.
SkipTLSVerify = false
# Only for 4K Instances
# Only for 4K Instances
Is4K = false
[Sonarr-Anime.Torrent]
# Set it to regex matches to respect/ignore case.
CaseSensitiveMatches = false
# These regex values will match any folder where the full name matches the specified values here, comma separated strings.
# These regex need to be escaped, that's why you see so many backslashes.
FolderExclusionRegex = ["\\bextras?\\b", "\\bfeaturettes?\\b", "\\bsamples?\\b", "\\bscreens?\\b", "\\bspecials?\\b", "\\bova\\b", "\\bnc(ed|op)?(\\\\d+)?\\b"]
# These regex values will match any folder where the full name matches the specified values here, comma separated strings.
# These regex need to be escaped, that's why you see so many backslashes.
FileNameExclusionRegex = ["\\bncop\\\\d+?\\b", "\\bnced\\\\d+?\\b", "\\bsample\\b", "brarbg.com\\b", "\\btrailer\\b", "music video", "comandotorrents.com"]
# Only files with these extensions will be allowed to be downloaded, comma separated strings or regex, leave it empty to allow all extensions
FileExtensionAllowlist = [".mp4", ".mkv", ".sub", ".ass", ".srt", ".!qB", ".parts"]
# Auto delete files that can't be playable (i.e .exe, .png)
AutoDelete = false
# Ignore Torrents which are younger than this value (in seconds: 600 = 10 Minutes)
IgnoreTorrentsYoungerThan = 180
# Maximum allowed remaining ETA for torrent completion (in seconds: 3600 = 1 Hour)
# Note that if you set the MaximumETA on a tracker basis that value is favoured over this value
MaximumETA = -1
# Do not delete torrents with higher completion percentage than this setting (0.5 = 50%, 1.0 = 100%)
MaximumDeletablePercentage = 0.99
# Ignore slow torrents.
DoNotRemoveSlow = true
# Maximum allowed time for allowed stalled torrents in minutes (-1 = Disabled, 0 = Infinite)
StalledDelay = 15
# Re-search stalled torrents when StalledDelay is enabled and you want to re-search before removing the stalled torrent, or only after the torrent is removed.
ReSearchStalled = false
# Optional per-Arr tracker overrides. Trackers are inherited from qBit.Trackers by default.
# Add entries here only if this Arr instance needs different settings for a tracker (matched by URI).
Trackers = []
[Sonarr-Anime.Torrent.SeedingMode]
# Set the maximum allowed download rate for torrents
# Set this value to -1 to disabled it
# Note that if you set the DownloadRateLimit on a tracker basis that value is favoured over this value
DownloadRateLimitPerTorrent = -1
# Set the maximum allowed upload rate for torrents
# Set this value to -1 to disabled it
# Note that if you set the UploadRateLimit on a tracker basis that value is favoured over this value
UploadRateLimitPerTorrent = -1
# Set the maximum allowed upload ratio for torrents
# Set this value to -1 to disabled it
# Note that if you set the MaxUploadRatio on a tracker basis that value is favoured over this value
MaxUploadRatio = -1
# Set the maximum seeding time in seconds for torrents
# Set this value to -1 to disabled it
# Note that if you set the MaxSeedingTime on a tracker basis that value is favoured over this value
MaxSeedingTime = -1
# Remove torrent condition (-1=Do not remove, 1=Remove on MaxUploadRatio, 2=Remove on MaxSeedingTime, 3=Remove on MaxUploadRatio or MaxSeedingTime, 4=Remove on MaxUploadRatio and MaxSeedingTime)
RemoveTorrent = -1
# Enable if you want to remove dead trackers
RemoveDeadTrackers = false
# If "RemoveDeadTrackers" is set to true then remove trackers with the following messages
RemoveTrackerWithMessage = ["skipping tracker announce (unreachable)", "No such host is known", "unsupported URL protocol", "info hash is not authorized with this tracker"]
[Radarr-1080]
# Toggle whether to manage the Servarr instance torrents.
Managed = true
# The URL used to access Servarr interface eg. http://ip:port(if you use a domain enter the domain without a port)
URI = "CHANGE_ME"
# The Servarr API Key, Can be found it Settings > General > Security
APIKey = "CHANGE_ME"
# If true, do not verify TLS for this Servarr API (HTTPS). Does not affect Overseerr/Ombi. Disables MITM protection for that connection.
SkipTLSVerify = false
# Category applied by Servarr to torrents in qBitTorrent, can be found in Settings > Download Clients > qBit > Category
Category = "radarr-1080"
# Toggle whether to send a query to Servarr to search any failed torrents
ReSearch = true
# The Servarr's Import Mode(one of Move, Copy or Auto)
importMode = "Auto"
# Timer to call RSSSync (In minutes) - Set to 0 to disable (Values below 5 can cause errors for maximum retires)
RssSyncTimer = 1
# Timer to call RefreshDownloads to update the queue. (In minutes) - Set to 0 to disable (Values below 5 can cause errors for maximum retires)
RefreshDownloadsTimer = 1
# Error messages shown my the Arr instance which should be considered failures.
# This entry should be a list, leave it empty if you want to disable this error handling.
# If enabled qBitrr will remove the failed files and tell the Arr instance the download failed
ArrErrorCodesToBlocklist = ["Unable to determine if file is a sample", "Not a preferred word upgrade for existing movie file(s)", "Not an upgrade for existing movie file(s)"]
[Radarr-1080.EntrySearch]
# Should search for Missing files?
SearchMissing = true
# Should search for unmonitored movies?
Unmonitored = false
# Radarr has a default of 3 simultaneous tasks, which can be increased up to 10 tasks
# If you set the environment variable of "THREAD_LIMIT" to a number between and including 2-10
# Radarr devs have stated that this is an unsupported feature so you will not get any support for doing so from them.
# That being said I've been daily driving 10 simultaneous tasks for quite a while now with no issues.
SearchLimit = 5
# It will order searches by the year the movie was released
SearchByYear = true
# Reverse search order (Start searching oldest to newest)
SearchInReverse = false
# Delay (in seconds) between checking for new Overseerr/Ombi requests. Does NOT affect delay between individual search commands (use Settings.SearchLoopDelay for that).
SearchRequestsEvery = 300
# Search media which already have a file in hopes of finding a better quality version.
DoUpgradeSearch = false
# Do a quality unmet search for existing entries.
QualityUnmetSearch = false
# Do a minimum custom format score unmet search for existing entries.
CustomFormatUnmetSearch = false
# Automatically remove torrents that do not mee the minimum custom format score.
ForceMinimumCustomFormat = false
# Once you have search all files on your specified year range restart the loop and search again.
SearchAgainOnSearchCompletion = true
# Use Temp profile for missing
UseTempForMissing = false
# Don't change back to main profile
KeepTempProfile = false
# Quality profile mappings for temp profile switching (Main Profile Name -> Temp Profile Name)
# Profile names must match exactly as they appear in your Arr instance
# Example: QualityProfileMappings = {"HD-1080p" = "SD", "HD-720p" = "SD"}
QualityProfileMappings = {}
# Reset all items using temp profiles to their original main profile on qBitrr startup
ForceResetTempProfiles = false
# Timeout in minutes after which items with temp profiles are automatically reset to main profile (0 = disabled)
TempProfileResetTimeoutMinutes = 0
# Number of retry attempts for profile switch API calls (default: 3)
ProfileSwitchRetryAttempts = 3
[Radarr-1080.EntrySearch.Ombi]
# Search Ombi for pending requests (Will only work if 'SearchMissing' is enabled.)
SearchOmbiRequests = false
# Ombi URI eg. http://ip:port (Note that this has to be the instance of Ombi which manage the Arr instance request (If you have multiple Ombi instances)
OmbiURI = "CHANGE_ME"
# Ombi's API Key
OmbiAPIKey = "CHANGE_ME"
# Only process approved requests
ApprovedOnly = true
# If true, do not verify TLS for Ombi HTTPS (self-signed). Disables MITM protection.
SkipTLSVerify = false
[Radarr-1080.EntrySearch.Overseerr]
# Search Overseerr for pending requests (Will only work if 'SearchMissing' is enabled.)
# If this and Ombi are both enable, Ombi will be ignored
SearchOverseerrRequests = false
# Overseerr's URI eg. http://ip:port
OverseerrURI = "CHANGE_ME"
# Overseerr's API Key
OverseerrAPIKey = "CHANGE_ME"
# Only process approved requests
ApprovedOnly = true
# If true, do not verify TLS for Overseerr HTTPS (self-signed). Disables MITM protection.
SkipTLSVerify = false
# Only for 4K Instances
# Only for 4K Instances
Is4K = false
[Radarr-1080.Torrent]
# Set it to regex matches to respect/ignore case.
CaseSensitiveMatches = false
# These regex values will match any folder where the full name matches the specified values here, comma separated strings.
# These regex need to be escaped, that's why you see so many backslashes.
FolderExclusionRegex = ["\\bextras?\\b", "\\bfeaturettes?\\b", "\\bsamples?\\b", "\\bscreens?\\b", "\\bnc(ed|op)?(\\\\d+)?\\b"]
# These regex values will match any folder where the full name matches the specified values here, comma separated strings.
# These regex need to be escaped, that's why you see so many backslashes.
FileNameExclusionRegex = ["\\bncop\\\\d+?\\b", "\\bnced\\\\d+?\\b", "\\bsample\\b", "brarbg.com\\b", "\\btrailer\\b", "music video", "comandotorrents.com"]
# Only files with these extensions will be allowed to be downloaded, comma separated strings or regex, leave it empty to allow all extensions
FileExtensionAllowlist = [".mp4", ".mkv", ".sub", ".ass", ".srt", ".!qB", ".parts"]
# Auto delete files that can't be playable (i.e .exe, .png)
AutoDelete = false
# Ignore Torrents which are younger than this value (in seconds: 600 = 10 Minutes)
IgnoreTorrentsYoungerThan = 180
# Maximum allowed remaining ETA for torrent completion (in seconds: 3600 = 1 Hour)
# Note that if you set the MaximumETA on a tracker basis that value is favoured over this value
MaximumETA = -1
# Do not delete torrents with higher completion percentage than this setting (0.5 = 50%, 1.0 = 100%)
MaximumDeletablePercentage = 0.99
# Ignore slow torrents.
DoNotRemoveSlow = true
# Maximum allowed time for allowed stalled torrents in minutes (-1 = Disabled, 0 = Infinite)
StalledDelay = 15
# Re-search stalled torrents when StalledDelay is enabled and you want to re-search before removing the stalled torrent, or only after the torrent is removed.
ReSearchStalled = false
# Optional per-Arr tracker overrides. Trackers are inherited from qBit.Trackers by default.
# Add entries here only if this Arr instance needs different settings for a tracker (matched by URI).
Trackers = []
[Radarr-1080.Torrent.SeedingMode]
# Set the maximum allowed download rate for torrents
# Set this value to -1 to disabled it
# Note that if you set the DownloadRateLimit on a tracker basis that value is favoured over this value
DownloadRateLimitPerTorrent = -1
# Set the maximum allowed upload rate for torrents
# Set this value to -1 to disabled it
# Note that if you set the UploadRateLimit on a tracker basis that value is favoured over this value
UploadRateLimitPerTorrent = -1
# Set the maximum allowed upload ratio for torrents
# Set this value to -1 to disabled it
# Note that if you set the MaxUploadRatio on a tracker basis that value is favoured over this value
MaxUploadRatio = -1
# Set the maximum seeding time in seconds for torrents
# Set this value to -1 to disabled it
# Note that if you set the MaxSeedingTime on a tracker basis that value is favoured over this value
MaxSeedingTime = -1
# Remove torrent condition (-1=Do not remove, 1=Remove on MaxUploadRatio, 2=Remove on MaxSeedingTime, 3=Remove on MaxUploadRatio or MaxSeedingTime, 4=Remove on MaxUploadRatio and MaxSeedingTime)
RemoveTorrent = -1
# Enable if you want to remove dead trackers
RemoveDeadTrackers = false
# If "RemoveDeadTrackers" is set to true then remove trackers with the following messages
RemoveTrackerWithMessage = ["skipping tracker announce (unreachable)", "No such host is known", "unsupported URL protocol", "info hash is not authorized with this tracker"]
[Radarr-4K]
# Toggle whether to manage the Servarr instance torrents.
Managed = true
# The URL used to access Servarr interface eg. http://ip:port(if you use a domain enter the domain without a port)
URI = "CHANGE_ME"
# The Servarr API Key, Can be found it Settings > General > Security
APIKey = "CHANGE_ME"
# If true, do not verify TLS for this Servarr API (HTTPS). Does not affect Overseerr/Ombi. Disables MITM protection for that connection.
SkipTLSVerify = false
# Category applied by Servarr to torrents in qBitTorrent, can be found in Settings > Download Clients > qBit > Category
Category = "radarr-4k"
# Toggle whether to send a query to Servarr to search any failed torrents
ReSearch = true
# The Servarr's Import Mode(one of Move, Copy or Auto)
importMode = "Auto"
# Timer to call RSSSync (In minutes) - Set to 0 to disable (Values below 5 can cause errors for maximum retires)
RssSyncTimer = 1
# Timer to call RefreshDownloads to update the queue. (In minutes) - Set to 0 to disable (Values below 5 can cause errors for maximum retires)
RefreshDownloadsTimer = 1
# Error messages shown my the Arr instance which should be considered failures.
# This entry should be a list, leave it empty if you want to disable this error handling.
# If enabled qBitrr will remove the failed files and tell the Arr instance the download failed
ArrErrorCodesToBlocklist = ["Unable to determine if file is a sample", "Not a preferred word upgrade for existing movie file(s)", "Not an upgrade for existing movie file(s)"]
[Radarr-4K.EntrySearch]
# Should search for Missing files?
SearchMissing = true
# Should search for unmonitored movies?
Unmonitored = false
# Radarr has a default of 3 simultaneous tasks, which can be increased up to 10 tasks
# If you set the environment variable of "THREAD_LIMIT" to a number between and including 2-10
# Radarr devs have stated that this is an unsupported feature so you will not get any support for doing so from them.
# That being said I've been daily driving 10 simultaneous tasks for quite a while now with no issues.
SearchLimit = 5
# It will order searches by the year the movie was released
SearchByYear = true
# Reverse search order (Start searching oldest to newest)
SearchInReverse = false
# Delay (in seconds) between checking for new Overseerr/Ombi requests. Does NOT affect delay between individual search commands (use Settings.SearchLoopDelay for that).
SearchRequestsEvery = 300
# Search media which already have a file in hopes of finding a better quality version.
DoUpgradeSearch = false
# Do a quality unmet search for existing entries.
QualityUnmetSearch = false
# Do a minimum custom format score unmet search for existing entries.
CustomFormatUnmetSearch = false
# Automatically remove torrents that do not mee the minimum custom format score.
ForceMinimumCustomFormat = false
# Once you have search all files on your specified year range restart the loop and search again.
SearchAgainOnSearchCompletion = true
# Use Temp profile for missing
UseTempForMissing = false
# Don't change back to main profile
KeepTempProfile = false
# Quality profile mappings for temp profile switching (Main Profile Name -> Temp Profile Name)
# Profile names must match exactly as they appear in your Arr instance
# Example: QualityProfileMappings = {"HD-1080p" = "SD", "HD-720p" = "SD"}
QualityProfileMappings = {}
# Reset all items using temp profiles to their original main profile on qBitrr startup
ForceResetTempProfiles = false
# Timeout in minutes after which items with temp profiles are automatically reset to main profile (0 = disabled)
TempProfileResetTimeoutMinutes = 0
# Number of retry attempts for profile switch API calls (default: 3)
ProfileSwitchRetryAttempts = 3
[Radarr-4K.EntrySearch.Ombi]
# Search Ombi for pending requests (Will only work if 'SearchMissing' is enabled.)
SearchOmbiRequests = false
# Ombi URI eg. http://ip:port (Note that this has to be the instance of Ombi which manage the Arr instance request (If you have multiple Ombi instances)
OmbiURI = "CHANGE_ME"
# Ombi's API Key
OmbiAPIKey = "CHANGE_ME"
# Only process approved requests
ApprovedOnly = true
# If true, do not verify TLS for Ombi HTTPS (self-signed). Disables MITM protection.
SkipTLSVerify = false
[Radarr-4K.EntrySearch.Overseerr]
# Search Overseerr for pending requests (Will only work if 'SearchMissing' is enabled.)
# If this and Ombi are both enable, Ombi will be ignored
SearchOverseerrRequests = false
# Overseerr's URI eg. http://ip:port
OverseerrURI = "CHANGE_ME"
# Overseerr's API Key
OverseerrAPIKey = "CHANGE_ME"
# Only process approved requests
ApprovedOnly = true
# If true, do not verify TLS for Overseerr HTTPS (self-signed). Disables MITM protection.
SkipTLSVerify = false
# Only for 4K Instances
# Only for 4K Instances
Is4K = true
[Radarr-4K.Torrent]
# Set it to regex matches to respect/ignore case.
CaseSensitiveMatches = false
# These regex values will match any folder where the full name matches the specified values here, comma separated strings.
# These regex need to be escaped, that's why you see so many backslashes.
FolderExclusionRegex = ["\\bextras?\\b", "\\bfeaturettes?\\b", "\\bsamples?\\b", "\\bscreens?\\b", "\\bnc(ed|op)?(\\\\d+)?\\b"]
# These regex values will match any folder where the full name matches the specified values here, comma separated strings.
# These regex need to be escaped, that's why you see so many backslashes.
FileNameExclusionRegex = ["\\bncop\\\\d+?\\b", "\\bnced\\\\d+?\\b", "\\bsample\\b", "brarbg.com\\b", "\\btrailer\\b", "music video", "comandotorrents.com"]
# Only files with these extensions will be allowed to be downloaded, comma separated strings or regex, leave it empty to allow all extensions
FileExtensionAllowlist = [".mp4", ".mkv", ".sub", ".ass", ".srt", ".!qB", ".parts"]
# Auto delete files that can't be playable (i.e .exe, .png)
AutoDelete = false
# Ignore Torrents which are younger than this value (in seconds: 600 = 10 Minutes)
IgnoreTorrentsYoungerThan = 180
# Maximum allowed remaining ETA for torrent completion (in seconds: 3600 = 1 Hour)
# Note that if you set the MaximumETA on a tracker basis that value is favoured over this value