-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsettings.json
50 lines (48 loc) · 997 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
41
42
43
44
45
46
47
48
49
50
{
"microTokenMintingService": {
"scheme": "p7identityserver4",
"clientId": "arbitrary-resource-owner-client",
"clientSecret": "secret"
},
"inProcTokenMintingService": {
"clientId": "arbitrary-resource-owner-client",
"clientSecret": "secret"
},
"authValidation": {
"schemes": [ "self-oidc"]
},
"Logging": {
"LogLevel": {
"Default": "Warning"
}
},
"AllowedHosts": "*",
"oidcSchemes": [
{
"scheme": "self-oidc",
"enabled": true
},
{
"scheme": "google",
"enabled": true
}
],
"InMemoryOAuth2ConfigurationStore": {
"oauth2": {
"authorities": [
{
"scheme": "self-oidc",
"authority": "https://localhost:5001",
"additionalEndpointBaseAddresses": [
]
},
{
"scheme": "google",
"authority": "https://accounts.google.com",
"additionalEndpointBaseAddresses": [
]
}
]
}
}
}