From 106aef579f6f5a14e43a6b099204f01d8812978c Mon Sep 17 00:00:00 2001 From: Thomas Dalichow <2012-02-05.github.com@thomasdalichow.de> Date: Sat, 9 Dec 2017 02:21:55 +0100 Subject: [PATCH] Add new config item: listen_address The IP address to bind the HTTP server to --- server/config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/server/config.js b/server/config.js index e3e97b2a..55561afc 100644 --- a/server/config.js +++ b/server/config.js @@ -14,6 +14,11 @@ const conf = convict({ default: 'localhost', env: 'REDIS_HOST' }, + listen_address: { + format: "ipaddress", + default: "127.0.0.1", + env: "IP_ADDRESS" + }, listen_port: { format: 'port', default: 1443,