From ef96f945abcad593227555318b9b77a941d42523 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Wed, 29 Jun 2016 21:45:23 +0200 Subject: [PATCH] Continued a bit: - Linux (LF) is now the default file line ending - moved config entry from deprecated configuration file, it was used here only. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .gitattributes | 4 ++-- application/hub/config.php | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitattributes b/.gitattributes index dfe077042..17cdcd537 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,2 @@ -# Auto detect text files and perform LF normalization -* text=auto +# Use Linux/Uni* line-feed for new lines (prevents converting) +* text=lf diff --git a/application/hub/config.php b/application/hub/config.php index 3340351b3..9f6b3ec6d 100644 --- a/application/hub/config.php +++ b/application/hub/config.php @@ -24,6 +24,9 @@ // Some hub-specific configuration like port hostname where we will listen, etc. $cfg = FrameworkConfiguration::getSelfInstance(); +// CFG: HUB-BOOTSTRAP-NODES +$cfg->setConfigEntry('hub_bootstrap_nodes', 'tcp://188.138.90.169:9060'); + // CFG: NODE-LISTEN-ADDR $cfg->setConfigEntry('node_listen_addr', '0.0.0.0'); -- 2.39.5