-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsettings.json
40 lines (40 loc) · 996 Bytes
/
appsettings.json
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
{
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Debug",
"Microsoft.AspNetCore.Authentication": "None",
"Microsoft.AspNetCore.HttpOverrides": "None",
"Microsoft.AspNetCore.Hosting": "None",
"Microsoft.AspNetCore.HostFiltering": "None",
"Microsoft.AspNetCore.ResponseCompression": "None",
"Microsoft.AspNetCore.Server": "None",
"Microsoft.AspNetCore.Session": "None"
}
},
"Cache": {
"Provider": "Redis",
"RegionName": "VIEApps-Services-SRP-Http",
"ExpirationTime": 25,
"Servers": [
{
"Address": "cache.vieapps.com",
"Port": 26429,
"Type": "Redis"
},
{
"Address": "cache.vieapps.com",
"Port": 36429,
"Type": "Memcached"
}
],
"SocketPool": {
"MinPoolSize": 5,
"MaxPoolSize": 128,
"DeadTimeout": "00:00:15",
"ConnectionTimeout": "00:00:05",
"ReceiveTimeout": "00:00:01"
},
"Options": "name=VIEApps NGX,abortConnect=false,allowAdmin=false,connectTimeout=5000,syncTimeout=2000"
}
}