-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
43 lines (43 loc) · 1.35 KB
/
config.yml
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
---
Serilog:
Using:
- Serilog.Sinks.Console
- Serilog.Sinks.File
- Serilog.Expressions
Filter:
- Name: ByExcluding
Args:
expression: "RequestPath like '/health%'"
MinimumLevel:
Default: "Information"
Override:
Microsoft: Information
System: Information
Enrich:
- FromLogContext
- WithMachineName
- WithProcessId
- WithThreadId
WriteTo:
- Name: Console
- Name: File
Args:
path: "%LOG_FOLDER%/log.log"
rollingInterval: Day
outputTemplate: "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} {Level:u3}] {Message:lj}{NewLine}{Exception}"
AllowedHosts: "*"
AppConfiguration:
TMDB_API_KEY: {{ TMDB API KEY}}
FULL_SCAN_CRON: "0 6 * * 1" # A full scan of Sonarr/Radarr is scheduled every Monday at 6:00 AM
TAG_NAME: "q" # must be the same as the tag name defined on the indexers
WATCH_PROVIDERS: "FR:Netflix,US:Amazon Prime Video" # format: REGION:PROVIDER,REGION:PROVIDER
Clients: # one or more clients
- Application: Radarr # must be Sonarr or Radarr (case insensitive)
ApiKey: {{ RADARR_API_KEY }}
BaseUrl: "https://radarr.com" # must match the Application Url of Sonarr/Radarr
- Application: Sonarr
ApiKey: {{ SONARR_API_KEY }}
BaseUrl: "https://sonarr.com"
# Authentication: # uncomment to enable basic authentication
# Username: admin
# Password: admin