20 lines
567 B
JSON
20 lines
567 B
JSON
|
|
{
|
||
|
|
"ConnectionStrings": {
|
||
|
|
"DefaultConnection": "Host=localhost;Port=5432;Database=flatrender;Username=svc_identity;Password=YOUR_PASSWORD;SearchPath=identity,public"
|
||
|
|
},
|
||
|
|
"Jwt": {
|
||
|
|
"Secret": "YOUR_JWT_SECRET_AT_LEAST_32_CHARS_LONG_HERE",
|
||
|
|
"Issuer": "flatrender-identity",
|
||
|
|
"Audience": "flatrender",
|
||
|
|
"AccessTokenMinutes": "15",
|
||
|
|
"RefreshTokenDays": "30"
|
||
|
|
},
|
||
|
|
"Logging": {
|
||
|
|
"LogLevel": {
|
||
|
|
"Default": "Debug",
|
||
|
|
"Microsoft.AspNetCore": "Information",
|
||
|
|
"Microsoft.EntityFrameworkCore.Database.Command": "Information"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|