isn/appsettings.json

24 lines
615 B
JSON

4 years ago
{
4 years ago
"RootApiKeySecret": "<your-root-api-clear-key>",
4 years ago
"NuGet": {
"ExternalUrl" : "<http://your-external.url",
"SourceDir" : "<your-Source-dir>"
},
"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"
},
4 years ago
"Logging": {
"LogLevel": {
"Default": "Warning"
}
}
}