From 49cc50b0d38de8b9621f6440d376e719e793b6f1 Mon Sep 17 00:00:00 2001 From: Alex Myasoedov Date: Thu, 7 Apr 2016 21:25:33 +0300 Subject: [PATCH] #1878 Set default bind address to 127.0.0.1 in development mode --- command/agent/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/command/agent/config.go b/command/agent/config.go index 2e22dcf98d..fd65d1b424 100644 --- a/command/agent/config.go +++ b/command/agent/config.go @@ -579,6 +579,7 @@ func DevConfig() *Config { conf.EnableDebug = true conf.DisableAnonymousSignature = true conf.EnableUi = true + conf.BindAddr = "127.0.0.1" return conf }