|
@@ -5,6 +5,11 @@ module.exports = {
|
5
|
5
|
/** Port on which the application will listen */
|
6
|
6
|
PORT: parseInt(process.env['PORT']) || 8080,
|
7
|
7
|
|
|
8
|
+ /** Host on which the application will listen (defaults to undefined,
|
|
9
|
+ hence listen on all interfaces on all IP addresses, but could also be
|
|
10
|
+ '127.0.0.1' **/
|
|
11
|
+ HOST: process.env['HOST'] || undefined,
|
|
12
|
+
|
8
|
13
|
/** Path to the directory where boards will be saved by default */
|
9
|
14
|
HISTORY_DIR: process.env['WBO_HISTORY_DIR'] || path.join(app_root, "server-data"),
|
10
|
15
|
|