added example config.ini
This commit is contained in:
parent
472700397a
commit
7e01d026d8
2 changed files with 63 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -6,6 +6,7 @@
|
|||
ehthumbs.db
|
||||
Thumbs.db
|
||||
Varken/configuration.py
|
||||
Varken/config.ini
|
||||
__pycache__
|
||||
GeoLite2-City.mmdb
|
||||
GeoLite2-City.tar.gz
|
||||
|
|
62
Varken/varken.example.ini
Normal file
62
Varken/varken.example.ini
Normal file
|
@ -0,0 +1,62 @@
|
|||
#Notes:
|
||||
# - Sonarr + Radarr scripts support multiple servers. You can remove the second
|
||||
# server by putting a # in front of the lines and section name, and removing
|
||||
# that number from your server_ids list
|
||||
# - tautulli_failback_ip, This is used when there is no IP listed in tautulli.
|
||||
# This can happen when you are streaming locally. This is usually your public IP.
|
||||
|
||||
[global]
|
||||
sonarr_server_ids = 1,2
|
||||
radarr_server_ids = 1,2
|
||||
ombi = true
|
||||
tautulli = true
|
||||
asa = false
|
||||
|
||||
[influxdb]
|
||||
url = influxdb.domain.tld
|
||||
port = 8086
|
||||
username = root
|
||||
password = root
|
||||
|
||||
[sonarr-1]
|
||||
url = sonarr1.domain.tld
|
||||
apikey = xxxxxxxxxxxxxxxx
|
||||
#ssl = true
|
||||
#verify_ssl = false
|
||||
|
||||
[sonarr-2]
|
||||
url = sonarr2.domain.tld
|
||||
apikey = yyyyyyyyyyyyyyyy
|
||||
#ssl = true
|
||||
#verify_ssl = false
|
||||
|
||||
[radarr-1]
|
||||
url = radarr1.domain.tld
|
||||
apikey = xxxxxxxxxxxxxxxx
|
||||
#ssl = true
|
||||
#verify_ssl = false
|
||||
|
||||
[radarr-2]
|
||||
url = radarr2.domain.tld
|
||||
apikey = yyyyyyyyyyyyyyyy
|
||||
#ssl = true
|
||||
#verify_ssl = false
|
||||
|
||||
[ombi]
|
||||
url = ombi.domain.tld
|
||||
apikey = xxxxxxxxxxxxxxxx
|
||||
#ssl = true
|
||||
#verify_ssl = false
|
||||
|
||||
[tautulli]
|
||||
url = tautulli.domain.tld
|
||||
tautulli_failback_ip = 0.0.0.0
|
||||
apikey = xxxxxxxxxxxxxxxx
|
||||
#ssl = true
|
||||
#verify_ssl = false
|
||||
influx_db = plex
|
||||
|
||||
[asa]
|
||||
username = cisco
|
||||
password = cisco
|
||||
influx_db = asa
|
Loading…
Reference in a new issue