33 lines
769 B
JSON
33 lines
769 B
JSON
{
|
|
"ConnectionStrings": {
|
|
"Default": "Host=localhost;Port=5432;Database=pnvpanel;Username=pnvpanel;Password=pnvpanel"
|
|
},
|
|
"Jwt": {
|
|
"Issuer": "PnvPanel",
|
|
"Audience": "PnvPanel",
|
|
"SigningKey": "change-me-min-32-chars-random-secret",
|
|
"AccessTokenMinutes": 15,
|
|
"RefreshTokenDays": 30
|
|
},
|
|
"AdminSeed": {
|
|
"Username": "",
|
|
"Password": ""
|
|
},
|
|
"Roles": {
|
|
"DefaultUserMaxConfigs": 3
|
|
},
|
|
"Serilog": {
|
|
"Using": [ "Serilog.Sinks.Console" ],
|
|
"MinimumLevel": {
|
|
"Default": "Information",
|
|
"Override": {
|
|
"Microsoft.AspNetCore": "Warning",
|
|
"Microsoft.EntityFrameworkCore": "Warning"
|
|
}
|
|
},
|
|
"WriteTo": [ { "Name": "Console" } ],
|
|
"Enrich": [ "FromLogContext" ]
|
|
},
|
|
"AllowedHosts": "*"
|
|
}
|