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

21 lines
418 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"Authentication": {
"Schemes": {
"Bearer": {
"ValidAudiences": [
"http://localhost:43229",
"https://localhost:44378",
"http://localhost:5142",
"https://localhost:7070"
],
"ValidIssuer": "dotnet-user-jwts"
}
}
}
}