-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.toml
More file actions
194 lines (140 loc) · 4.6 KB
/
config.example.toml
File metadata and controls
194 lines (140 loc) · 4.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
# Torrentarr Configuration Example
# This file is 100% compatible with qBitrr config.toml
# Copy this file to one of the following locations:
# - ~/config/config.toml
# - ~/.config/qbitrr/config.toml
# - ~/.config/torrentarr/config.toml
# - ./config.toml (current directory)
[Settings]
# Internal config schema version - managed automatically
ConfigVersion = "6.1.0"
# Logging level: CRITICAL, ERROR, WARNING, NOTICE, INFO, DEBUG, TRACE
ConsoleLevel = "INFO"
# Enable logging to files (logs/ directory)
Logging = true
# Path to completed downloads folder
CompletedDownloadFolder = "/downloads/completed"
# Desired free space (-1 to disable): K=kilobytes, M=megabytes, G=gigabytes, T=terabytes
FreeSpace = "10G"
# Folder to check for free space
FreeSpaceFolder = "/downloads"
# Enable automatic pause/resume of torrents based on free space
AutoPauseResume = true
# Sleep time when no internet connection (seconds)
NoInternetSleepTimer = 15
# Time between torrent processing loops (seconds)
LoopSleepTimer = 5
# Time between search commands (-1 to disable, seconds)
SearchLoopDelay = 60
# Category for failed torrents
FailedCategory = "failed"
# Category for torrents to recheck
RecheckCategory = "recheck"
# Operate without tags (use categories only)
Tagless = false
# Ignore torrents younger than this (seconds)
IgnoreTorrentsYoungerThan = 180
# URLs to ping for internet connectivity check
PingURLS = ["one.one.one.one", "dns.google.com"]
# Auto-download/update FFprobe binary
FFprobeAutoUpdate = true
# Enable automatic updates
AutoUpdateEnabled = false
# Cron schedule for auto-updates (weekly Sunday at 3 AM)
AutoUpdateCron = "0 3 * * 0"
# Automatically restart crashed worker processes
AutoRestartProcesses = true
# Maximum restart attempts within restart window
MaxProcessRestarts = 5
# Time window for tracking restarts (seconds)
ProcessRestartWindow = 300
# Delay before restarting a failed process (seconds)
ProcessRestartDelay = 5
[WebUI]
# WebUI listen host (0.0.0.0 for all interfaces, 127.0.0.1 for localhost only)
Host = "0.0.0.0"
# WebUI listen port
Port = 6969
# Bearer token for API authentication (leave empty to disable)
Token = "your-secure-token-here"
# Authentication: AuthDisabled=true (default) = no login; false = require login (Local and/or OIDC). See docs/configuration/webui-authentication.md
AuthDisabled = true
LocalAuthEnabled = false
OIDCEnabled = false
# Enable live updates for Arr views
LiveArr = true
# Group Sonarr episodes by series
GroupSonarr = true
# Group Lidarr albums by artist
GroupLidarr = true
# WebUI theme (Light or Dark)
Theme = "Dark"
# View density (Comfortable or Compact)
ViewDensity = "Comfortable"
[qBit]
# Disable qBittorrent integration (headless search-only mode)
Disabled = false
# qBittorrent WebUI host
Host = "localhost"
# qBittorrent WebUI port
Port = 8080
# qBittorrent authentication
UserName = "admin"
Password = "adminadmin"
# Categories managed directly by qBit (not by Arr instances)
ManagedCategories = []
# Global tracker configurations (inherited by all Arr instances)
Trackers = []
[qBit.CategorySeeding]
# Download rate limit per torrent in KB/s (-1 = unlimited)
DownloadRateLimitPerTorrent = -1
# Upload rate limit per torrent in KB/s (-1 = unlimited)
UploadRateLimitPerTorrent = -1
# Maximum upload ratio (-1 = unlimited, e.g., 2.0 for 200%)
MaxUploadRatio = 2.0
# Maximum seeding time in seconds (-1 = unlimited)
MaxSeedingTime = 604800
# Remove mode: 0=Never, 1=IfMetUploadLimit, 2=Always
RemoveMode = 1
# Enable Hit & Run protection
HitAndRunMode = "and"
# Minimum seed ratio for HnR protection
MinSeedRatio = 1.0
# Minimum seed time for HnR protection (seconds)
MinSeedTime = 86400
# Example Radarr instance for movies
[Radarr-Movies]
# Radarr API URL
URI = "http://localhost:7878"
# Radarr API key (Settings > General > Security)
APIKey = "your-radarr-api-key"
# Enable management for this instance
Managed = true
# qBittorrent category for this instance
Category = "radarr-movies"
# Search only mode (no torrent processing)
SearchOnly = false
# Processing only mode (no searches)
ProcessingOnly = false
# Example Sonarr instance for TV shows
[Sonarr-TV]
URI = "http://localhost:8989"
APIKey = "your-sonarr-api-key"
Managed = true
Category = "sonarr-tv"
SearchOnly = false
ProcessingOnly = false
# Example Lidarr instance for music
[Lidarr-Music]
URI = "http://localhost:8686"
APIKey = "your-lidarr-api-key"
Managed = true
Category = "lidarr-music"
SearchOnly = false
ProcessingOnly = false
# You can have multiple instances of the same type:
# [Radarr-4K]
# URI = "http://localhost:7879"
# APIKey = "your-4k-radarr-api-key"
# Managed = true
# Category = "radarr-4k"