-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsettings.json
63 lines (63 loc) · 1.28 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"AllowedHosts": "*",
"ReverseProxy": {
"Routes": {
"noderoute": {
"ClusterId": "nodecluster",
"Match": {
"Path": "{**catch-all}"
}
}
},
"Clusters": {
"nodecluster": {
"HttpRequest": {
"ActivityTimeout": "00:10:00"
},
"Destinations": {
"node": {
"Address": "http://localhost:3002"
}
}
}
}
},
"Serilog": {
"Using": [],
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"Yarp": "Warning"
}
},
"Enrich": [ "FromLogContext" ],
"WriteTo": [
{
"Name": "File",
"Args": {
"path": "Logs\\log.txt"
}
}
]
},
"ActiveDirectory": {
"IsActive": false,
"TrustedUserHeader": "X-Control-Header",
"OverrideUserWithValue": "",
"TrustedGroupHeader": "X-Control-Group-Header",
"OverrideGroupsWithValue": "",
"TrustedEmailHeader": "X-Control-Email-Header",
"OverrideEmailWithValue": ""
},
"UserCache": {
"TimeOut": 7200
},
"NodeHost": {
"Enabled": "true",
"MinimumVersion": "20",
"EntryPoint": "index.js",
"FolderName": "node_server",
"InstallNodeModules": "false"
}
}