Browse Source

Add new configuration section to appsetting.json.

pull/340/head
seamys 7 years ago
parent
commit
d7ee560648
  1. 22
      src/Squidex/appsettings.json

22
src/Squidex/appsettings.json

@ -61,8 +61,8 @@
/*
* The maximum number of megabyte that the process can consume until it is marked as not healthy.
*/
"threshold": 4096
}
"threshold": 4096
}
},
"contentsController": {
@ -71,13 +71,13 @@
*
* Nginx Has problems with long headers. It might make sense to disable this feature if you do not use a CDN.
*/
"enableSurrogateKeys": true,
"enableSurrogateKeys": true,
/*
/*
* Restrict the surrogate keys to results that have less than 200 items.
*/
"maxItemsForSurrogateKeys": 200
},
"maxItemsForSurrogateKeys": 200
},
"content": {
/*
@ -297,5 +297,15 @@
* The client secret for twitter.
*/
"clientSecret": "Pdu9wdN72T33KJRFdFy1w4urBKDRzIyuKpc0OItQC2E616DuZD"
},
"smtpServer": {
/*
* The hostname of the smtp server
*/
"host": "smtp.gmail.com",
"port": 465,
"enableSsl": true,
"username": "<username>@gmail.com",
"password": "<password>"
}
}

Loading…
Cancel
Save