From 9e1b1ba52397b6b80a11d3edb8f7b545e1ca36d7 Mon Sep 17 00:00:00 2001 From: Mike Kalinin <45598572+sprymiker@users.noreply.github.com> Date: Sat, 1 Aug 2020 14:19:35 +0300 Subject: [PATCH] Changed default configuration 1. It does work in Docker OOTB 2. Debug mode is OFF by default --- server/config.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/config.json b/server/config.json index 7079f085..e34dacd6 100644 --- a/server/config.json +++ b/server/config.json @@ -1,11 +1,11 @@ { - "debug": true, + "debug": false, "messageServer": { "port": 6689, - "host": "127.0.0.1" + "host": "0.0.0.0" }, "httpServer": { "port": 6688, - "host": "127.0.0.1" + "host": "0.0.0.0" } }