-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsettings.json
97 lines (96 loc) · 2.27 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"Gateway": {
"SessionTimeoutInMin": "60",
"Url": "http://+:8080",
"TokenExchangeStrategy": "AzureAd"
},
"UseHttps": false,
"Apis": [
{
"ApiPath": "/ui-bff/api/",
"ApiScopes": "api://ui-bff/read-write"
},
{
"ApiPath": "/httpbin",
"ApiScopes": "api://ui-bff/read-write"
},
{
"ApiPath": "/ui/grafana",
"ApiScopes": "api://ui-bff/read-write"
}
],
"ApiUrls": [
"/userinfo",
"/ui-bff/api"
],
"OpenIdConnect": {
"DiscoveryUrl": "https://oidc.inoa.io/realms/inoa",
"Authority": "https://oidc.inoa.io/realms/inoa",
"ClientId": "inoa-frontend-dev",
"ClientSecret": "",
"Scopes": "openid profile email offline_access"
},
"Logging": {
"LogLevel": {
"Default": "Debug",
"Microsoft": "Debug",
"Microsoft.Hosting.Lifetime": "Debug",
"Microsoft.AspNetCore.Hosting.Diagnostics": "Debug"
}
},
"AllowedHosts": "*",
"ReverseProxy": {
"Routes": {
"faroRoute": {
"ClusterId": "faroCluster",
"AuthorizationPolicy": "authPolicy",
"Match": {
"Path": "/collect"
}
},
"backendMfRoute": {
"ClusterId": "backendMfCluster",
"AuthorizationPolicy": "authPolicy",
"Match": {
"Path": "ui-bff/api/{**remainder}"
},
"Transforms": [
{
"PathPattern": "/api/{**remainder}"
},
{
"RemoveCookie": "true"
}
]
},
"appRoute": {
"ClusterId": "appCluster",
"AuthorizationPolicy": "authPolicy",
"Match": {
"Path": "{**remainder}"
},
"Transforms": [
{
"GrafanaAuthProxy": "true"
}
]
}
},
"Clusters": {
"backendMfCluster": {
"Destinations": {
"destination1": {
"Address": "https://api.inoa.io"
}
}
},
"appCluster": {
"Destinations": {
"destination1": {
"Address": "http://grafana:3000"
}
}
}
}
}
}