isn/appsettings.json

24 lines
643 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-05-02 16:37:03 +01:00
"Nuget": {
2021-04-08 02:03:17 +01:00
"ExternalUrl" : "<http://your-external.url",
2021-05-02 15:22:46 +01:00
"PackagesRootDir" : "<your-Source-dir>",
2021-05-02 16:37:03 +01:00
"ProtectionTitle": "protected-data-v1",
"MaxUserKeyCount": 1
2021-04-08 02:03:17 +01:00
},
2021-04-25 12:12:50 +01:00
"ConnectionStrings": {
2021-05-08 22:01:37 +01:00
"DefaultConnection": "Server=<pgserver>;Port=<pgport>;Database=<dbname>;Username=<dbusername>;Password=<dbpass>;"
2021-04-25 12:12:50 +01:00
},
"AllowedHosts": "*",
2021-05-02 15:22:46 +01:00
"Smtp": {
"Server": "<smtp.server.address>",
2021-04-25 12:12:50 +01:00
"Port": 25,
2021-05-02 15:22:46 +01:00
"SenderName": "<from-name>",
"SenderEmail": "<from-email>"
2021-04-25 12:12:50 +01:00
},
2021-04-08 02:03:17 +01:00
"Logging": {
"LogLevel": {
"Default": "Warning"
}
}
}