-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathappsettings.json
More file actions
39 lines (38 loc) · 888 Bytes
/
appsettings.json
File metadata and controls
39 lines (38 loc) · 888 Bytes
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
{
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information",
"OpenIddict.Server.OpenIddictServerDispatcher": "Warning"
}
}
},
"AllowedHosts": "*",
"IdentityServer": {
"ServerUri": "*",
"AccessTokenLifetime": "01:00:00",
"IdentityTokenLifetime": "01:00:00",
"AuthorizationCodeLifetime": "00:05:00",
"UseForwardedHeaders": false,
"PersistKeys": false,
"Hosts": [ "https://localhost", "https://myserver.com", "https://oidcdebugger.com" ],
"Clients": [
{
"ClientId": "my-public-app"
},
{
"ClientId": "my-confidential-app",
"ClientSecret": "changeme"
},
{
"ClientId": "*"
}
],
"Groups": [
"MyServer .*",
"MyServer Admin"
]
}
}