isn/appsettings.json

23 lines
615 B
JSON
Raw Normal View History

2021-04-08 02:03:17 +01:00
{
2021-04-08 03:08:20 +01:00
"RootApiKeySecret": "<your-root-api-clear-key>",
2021-04-08 02:03:17 +01:00
"NuGet": {
"ExternalUrl" : "<http://your-external.url",
"SourceDir" : "<your-Source-dir>"
},
2021-04-25 12:12:50 +01:00
"ConnectionStrings": {
"DefaultConnection": "Server=<pqserver>;Port=<pqport>;Database=<dbname>;Username=<dbusername>;Password=<dbpass>;"
},
"AllowedHosts": "*",
"SmtpSettings": {
"Server": "localhost",
"Port": 25,
"SenderName": "Paul Schneider",
"SenderEmail": "paul@pschneider.fr",
"ProtectionTitle": "protected-data-v1"
},
2021-04-08 02:03:17 +01:00
"Logging": {
"LogLevel": {
"Default": "Warning"
}
}
}