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
# Required. Username and password that sonarr/radarr use to connect to the proxy
= "putioarr"
= "putioarr"
# Required. Directory where the proxy will download files to. This directory has to be readable by
# sonarr/radarr in order to import downloads
= "/downloads"
# Optional bind address, default "0.0.0.0"
= "0.0.0.0"
# Optional TCP port, default 9091
= 9091
# Optional log level, default "info"
= "info"
# Optional UID, default 1000. Change the owner of the downloaded files to this UID. Requires root.
= 1000
# Optional polling interval in secs, default 10.
= 10
# Optional skip directories when downloding, default ["sample", "extras"]
= ["sample", "extras"]
# Optional number of orchestration workers, default 10. Unless there are many changes coming from
# put.io, you shouldn't have to touch this number. 10 is already overkill.
= 10
# Optional number of download workers, default 4. This controls how many downloads we run in parallel.
= 4
[]
# Required. Putio API key. You can generate one using `putioarr get-token`
= ""
# Both [sonarr] and [radarr] are optional, but you'll need at least one of them
# [sonarr]
# url = "http://mysonarrhost:8989/sonarr"
# Can be found in Sonarr: Settings -> General
# api_key = "MYSONARRAPIKEY"
# [radarr]
# url = "http://myradarrhost:7878/radarr"
# Can be found in Radarr: Settings -> General
# api_key = "MYRADARRAPIKEY"
# [whisparr]
# url = "http://mywhisparrhost:6969/radarr"
# Can be found in Radarr: Settings -> General
# api_key = "MYWHISPARRAPIKEY"
# [lidarr]
# url = "http://mylidarrhost:8686/lidarr"
# Can be found in Lidarr: Settings -> General
# api_key = "MYLIDARRAPIKEY"
# Additional *arr instances can be added under [arrs.<name>] with any name.
# Set `type` to one of sonarr/radarr/whisparr/lidarr (defaults to inferring
# from the section name).
# [arrs.whisparrv2]
# type = "whisparr"
# url = "http://whis.lan:6969/whisparr"
# api_key = "MYWHISPARRV2APIKEY"
# category = "whistwo"
# Additional, arbitrarily-named *arr instances can be defined under [arrs.<name>].
# The name is arbitrary; the section is treated the same as the legacy
# [sonarr]/[radarr]/[whisparr] sections. Useful when you run more than one
# instance of the same *arr (e.g. multiple Whisparr versions).
# [arrs.whisparrv2]
# url = "http://whisparr-v2:6969/whisparr"
# api_key = "MYWHISPARRV2APIKEY"
# category = "whistwo"
#
# [arrs.whisparrv3]
# url = "http://whisparr-v3:6969/whisparr"
# api_key = "MYWHISPARRV3APIKEY"
# category = "whisthree"