-
Notifications
You must be signed in to change notification settings - Fork 10
/
appsettings.Development.json
72 lines (72 loc) · 1.44 KB
/
appsettings.Development.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
{
"Kestrel": {
"EndPoints": {
"Http": {
"Url": "http://*:48728"
},
"Https": {
"Url": "https://*:5001"
}
}
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Information"
},
"Remote": {
"Server": ""
},
"Elastic": {
}
},
"HealthOptions": {
"Enabled": true
},
"MetricsOptions": {
"Enabled": true
},
"DefaultUser": {
"Username": "admin",
"Password": "123"
},
"HealthEndpointsOptions": {
"HealthEndpointEnabled": true,
"PingEndpointEnabled": true
},
"MetricEndpointsOptions": {
"MetricsEndpointEnabled": true,
"MetricsTextEndpointEnabled": true,
"EnvironmentInfoEndpointEnabled": true
},
"Swagger": {
"Enabled": true
},
"Sentry": {
"Dsn": ""
},
"Audit": {
"Enabled": true
},
"OpenId": {
"Clients": {
"web_client": {
"AccessTokenLifetime" : 60,
"RedirectUris": [
"https://localhost:5001/auth/openid-callback",
"https://localhost:5001/auth/openid-callback?popup=1",
"/auth/openid-callback",
"/auth/openid-callback?popup=1",
"/swagger/oauth2-redirect.html",
"https://localhost:5001/swagger/oauth2-redirect.html"
]
}
}
},
"General": {
"SiteUrl": "https://localhost:5003"
},
"MiniProfilerEnabled": true,
"TestApiEnabled": true,
"DefaultFileStorage": "./files"
}