Csharp-API-Template/appsettings.json

18 lines
313 B
JSON
Raw Permalink Normal View History

2024-10-01 16:50:41 +00:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"Jwt": {
2024-10-08 11:29:54 +00:00
"Key": "YOUR_KEY",
"Issuer": "YOUR_ISSUER",
"Audience": "YOUR_AUDIENCE"
},
"ConnectionStrings": {
"DATABASE": "YOUR_CONNECTION_STRING"
}
2024-10-01 16:50:41 +00:00
}