isn/src/isnd/appsettings.json

34 lines
803 B
JSON
Raw Normal View History

2021-04-08 02:03:17 +01:00
{
2021-06-18 23:57:02 +01:00
"AdminStartupList": {
"Users": [
"happy-new-root"
]
},
2021-08-23 03:21:08 +01:00
"Isn": {
"ExternalUrl": "<lame-server>",
2021-05-02 15:22:46 +01:00
"PackagesRootDir" : "<your-Source-dir>",
2021-05-02 16:37:03 +01:00
"ProtectionTitle": "protected-data-v1",
2021-08-27 21:22:34 +01:00
"MaxUserKeyCount": 1,
"CatalogPageLen": 480
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-07-05 12:55:52 +01:00
"Unleash":
{
"ClientApiKey": "lame-unleash-client-api-key",
"ApiUrl": "http://localhost:4242/api/"
},
2021-04-08 02:03:17 +01:00
"Logging": {
"LogLevel": {
"Default": "Warning"
}
}
}