tuitio/IdentityServer.Api/appsettings.json

21 lines
458 B
JSON
Raw Normal View History

2020-12-19 18:17:24 +02:00
{
2020-12-20 11:28:25 +02:00
"urls": "http://*:5063",
2020-12-20 00:18:53 +02:00
"ConnectionStrings": {
2022-11-25 09:06:58 +02:00
"DatabaseConnection": "Server=######;Database=######;User Id=######;Password=######;MultipleActiveResultSets=true"
2020-12-20 00:18:53 +02:00
},
2020-12-19 18:17:24 +02:00
"Logging": {
"LogLevel": {
2020-12-21 01:28:22 +02:00
"Default": "Debug",
2020-12-19 18:17:24 +02:00
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
2021-11-13 17:17:13 +02:00
"AllowedHosts": "*",
"Restrictions": {
"MaxFailedLoginAttempts": 5
},
"Token": {
"ValidityInMinutes": 43800
}
2020-12-19 18:17:24 +02:00
}