-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
32 lines (32 loc) · 781 Bytes
/
Copy pathappsettings.json
File metadata and controls
32 lines (32 loc) · 781 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
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"Authentication": {
"Schemes": {
"Bearer": {
"ExpirationInMinutes": 20,
"Key": "1f5fda13-74ab-4a79-9cc3-3bc3f0a18466",
"ValidAudiences": [
"https://localhost:4200",
"http://localhost:4200",
"https://localhost:7190",
"http://localhost:5166"
],
"ValidIssuer": "secret-issuer"
},
"Basic": {
"UserName": "admin",
"Password": "admin"
}
}
},
"CORS": {
"name": "allowLocalhostOrigins",
"urls": [ "http://127.0.0.1:4200", "http://localhost:4200", "https://127.0.0.1:4200", "https://localhost:4200" ]
}
}