diff --git a/config.json b/config.json index b702dcb030c64fa5b6b5237d8b6ce9cd152f3304..d7e1339593eb9f428dcf5f166697fb3f1fa8f4c8 100644 --- a/config.json +++ b/config.json @@ -17,7 +17,7 @@ "port": 14626 }, "dashboard": { - "bindAddress": "0.0.0.0:8081" + "bindAddress": "127.0.0.1:8081" }, "database": { "directory": "mainnetdb" @@ -26,7 +26,7 @@ "port": 14666 }, "graph": { - "bindAddress": "127.0.0.1:8083", + "bindAddress": "127.0.0.1:8082", "domain": "", "networkName": "GoShimmer", "socketIOPath": "socket.io-client/dist/socket.io.js", @@ -56,7 +56,7 @@ "privateKey": "", "username": "goshimmer" }, - "bindAddress": "0.0.0.0:8080" + "bindAddress": "127.0.0.1:8080" }, "zeromq": { "port": 5556 diff --git a/plugins/dashboard/parameters.go b/plugins/dashboard/parameters.go index 1031a27367673d5576a9f10c4892c1e1e31f6d80..2326d843bf9d6e18a3d649bf3415afce603664f0 100644 --- a/plugins/dashboard/parameters.go +++ b/plugins/dashboard/parameters.go @@ -9,5 +9,5 @@ const ( ) func init() { - flag.String(CFG_BIND_ADDRESS, "0.0.0.0:8081", "the bind address for the dashboard") + flag.String(CFG_BIND_ADDRESS, "127.0.0.1:8081", "the bind address for the dashboard") } diff --git a/plugins/graph/parameters.go b/plugins/graph/parameters.go index 5fbef46f389b43390aeaef3c1a9e3b47e7ae787b..7b49d680d262140e2fa4180da1dab811e430ff48 100644 --- a/plugins/graph/parameters.go +++ b/plugins/graph/parameters.go @@ -17,6 +17,6 @@ func init() { flag.String(CFG_WEBROOT, "IOTAtangle/webroot", "Path to IOTA Tangle Visualiser webroot files") flag.String(CFG_SOCKET_IO, "socket.io-client/dist/socket.io.js", "Path to socket.io.js") flag.String(CFG_DOMAIN, "", "Set the domain on which IOTA Tangle Visualiser is served") - flag.String(CFG_BIND_ADDRESS, "127.0.0.1:8083", "the bind address for the IOTA Tangle Visualizer") + flag.String(CFG_BIND_ADDRESS, "127.0.0.1:8082", "the bind address for the IOTA Tangle Visualizer") flag.String(CFG_NETWORK, cli.AppName, "Name of the network shown in IOTA Tangle Visualiser") } diff --git a/plugins/webapi/parameters.go b/plugins/webapi/parameters.go index e5703ce31f628451739d2b38df4a368a4f39ccc4..d87284c8422b2f587c36a4dc6d9894a0ad3acc65 100644 --- a/plugins/webapi/parameters.go +++ b/plugins/webapi/parameters.go @@ -9,5 +9,5 @@ const ( ) func init() { - flag.String(BIND_ADDRESS, "0.0.0.0:8080", "the bind address for the web API") + flag.String(BIND_ADDRESS, "127.0.0.1:8080", "the bind address for the web API") }