-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.Production.json
More file actions
81 lines (72 loc) · 1.6 KB
/
appsettings.Production.json
File metadata and controls
81 lines (72 loc) · 1.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
{
"Logging": {
"LogLevel": {
"Default": "Warning",
"Microsoft.AspNetCore": "Warning",
"Microsoft.AspNetCore.HttpLogging": "Error",
"Unchained": "Information"
}
},
"Unchained": {
"TimeoutSeconds": 20,
"RetryAttempts": 3
},
"RateLimit": {
"PermitLimit": 50,
"WindowMinutes": 1,
"QueueLimit": 5
},
"Cache": {
"DefaultExpirationMinutes": 30,
"ChannelsExpirationMinutes": 120,
"EpgExpirationMinutes": 60,
"StreamUrlExpirationMinutes": 10
},
"Network": {
"InterfaceName": "eth0",
"IpAddress": "192.168.1.200",
"SubnetMask": "255.255.255.0",
"Gateway": "192.168.1.1",
"DnsServers": [ "8.8.8.8", "8.8.4.4" ],
"ProxyAddress": "",
"ProxyPort": 0,
"MaxConnectionsPerServer": 50,
"ConnectionTimeoutSeconds": 20,
"EnableSsl": true,
"ValidateServerCertificate": true,
"PooledConnectionLifetimeSeconds": 0,
"PooledConnectionIdleTimeoutSeconds": 0
},
"HealthChecks": {
"DetailedErrors": false,
"TimeoutSeconds": 5
}
}
// appsettings.Staging.json
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Unchained": "Information"
}
},
"Unchained": {
"TimeoutSeconds": 30,
"RetryAttempts": 2
},
"RateLimit": {
"PermitLimit": 75,
"WindowMinutes": 1
},
"Cache": {
"DefaultExpirationMinutes": 20,
"ChannelsExpirationMinutes": 90,
"EpgExpirationMinutes": 45,
"StreamUrlExpirationMinutes": 8
},
"Telemetry": {
"IntervalMinutes": 5,
"LogFilePath": "logs/telemetry.log"
}
}