AspNetCore.Docs.Samples/security/authorization/AuthRequirementsData/appsettings.Development.json

21 lines
418 B
JSON
Raw Permalink Normal View History

2023-05-27 11:05:48 +08:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"Authentication": {
"Schemes": {
"Bearer": {
"ValidAudiences": [
"http://localhost:23392",
"https://localhost:44387",
"http://localhost:5107",
"https://localhost:7064"
],
"ValidIssuer": "dotnet-user-jwts"
}
}
}
}