retroactiune/Retroactiune.WebAPI/appsettings.json

33 lines
848 B
JSON
Raw Normal View History

2021-05-28 20:52:56 +00:00
{
"AuthorizationProvider": {
"Domain": "Your AuthProvider Domain",
"Audience": "Your API Url",
"SymmetricSecurityKey": "HS256 secret"
},
2021-07-17 12:55:22 +00:00
"Sentry": {
"Dsn": "",
"MaxRequestBodySize": "Always",
"SendDefaultPii": true,
"MinimumBreadcrumbLevel": "Debug",
"MinimumEventLevel": "Warning",
"AttachStackTrace": true,
"Debug": false,
"DiagnosticsLevel": "Error"
},
"DatabaseSettings": {
"FeedbacksCollectionName": "feedbacks",
"TokensCollectionName": "tokens",
"FeedbackReceiversCollectionName": "feedback_receivers",
"ConnectionString": "mongodb://localhost:27017",
"DatabaseName": "Retroactiune"
},
2021-05-28 20:52:56 +00:00
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*"
}