AspNetCore.Docs.Samples/tutorials/webApiSwagger/secureSwagger/appsettings.Development.json

21 lines
417 B
JSON
Raw Normal View History

2023-09-09 08:19:51 +08:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"Authentication": {
"Schemes": {
"Bearer": {
"ValidAudiences": [
"http://localhost:8345",
"https://localhost:44340",
"http://localhost:5006",
"https://localhost:7169"
],
"ValidIssuer": "dotnet-user-jwts"
}
}
}
}