summaryrefslogtreecommitdiff
path: root/settings.json.template
diff options
context:
space:
mode:
Diffstat (limited to 'settings.json.template')
-rw-r--r--settings.json.template16
1 files changed, 12 insertions, 4 deletions
diff --git a/settings.json.template b/settings.json.template
index 404ce1c7..798ce0ef 100644
--- a/settings.json.template
+++ b/settings.json.template
@@ -3,7 +3,7 @@
Please edit settings.json, not settings.json.template
- To still commit settings without credentials you can
+ To still commit settings without credentials you can
store any credential settings in credentials.json
*/
{
@@ -18,6 +18,9 @@
"ip": "0.0.0.0",
"port" : 9001,
+ // Option to hide/show the settings.json in admin page, default option is set to true
+ "showSettingsInAdminPage" : true,
+
/*
// Node native SSL support
// this is disabled by default
@@ -47,7 +50,8 @@
"user" : "root",
"host" : "localhost",
"password": "",
- "database": "store"
+ "database": "store",
+ "charset" : "utf8mb4"
},
*/
@@ -141,6 +145,10 @@
/* Privacy: disable IP logging */
"disableIPlogging" : false,
+ /* Time (in seconds) to automatically reconnect pad when a "Force reconnect"
+ message is shown to user. Set to 0 to disable automatic reconnection */
+ "automaticReconnectionTimeout" : 0,
+
/* Users for basic authentication. is_admin = true gives access to /admin.
If you do not uncomment this, /admin will not be available! */
/*
@@ -215,9 +223,9 @@
, "level": "error" // filters out all log messages that have a lower level than "error"
, "appender":
{ "type": "smtp"
- , "subject": "An error occured in your EPL instance!"
+ , "subject": "An error occurred in your EPL instance!"
, "recipients": "bar@blurdybloop.com, baz@blurdybloop.com"
- , "sendInterval": 60*5 // in secs -- will buffer log messages; set to 0 to send a mail for every message
+ , "sendInterval": 300 // 60 * 5 = 5 minutes -- will buffer log messages; set to 0 to send a mail for every message
, "transport": "SMTP", "SMTP": { // see https://github.com/andris9/Nodemailer#possible-transport-methods
"host": "smtp.example.com", "port": 465,
"secureConnection": true,