23 lines
507 B
JSON
23 lines
507 B
JSON
{
|
|
"ConnectionStrings": {
|
|
"DefaultConnection": "Data Source=mikrocop.db"
|
|
},
|
|
"Jwt": {
|
|
"Issuer": "MikrocopApi",
|
|
"Audience": "MikrocopApiClients",
|
|
"SigningKey": "replace-with-a-long-random-secret-key-min-32chars",
|
|
"ExpirationMinutes": 60
|
|
},
|
|
"Serilog": {
|
|
"MinimumLevel": {
|
|
"Default": "Information",
|
|
"Override": {
|
|
"Microsoft": "Warning",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"Enrich": [ "FromLogContext" ]
|
|
},
|
|
"AllowedHosts": "*"
|
|
}
|