Merge pull request #1928 from msoedov/bind_addr

Set default bind address to 127.0.0.1 in development mode
This commit is contained in:
James Phillips 2016-04-09 00:53:50 -07:00
commit 16f34bfa30
1 changed files with 1 additions and 0 deletions

View File

@ -579,6 +579,7 @@ func DevConfig() *Config {
conf.EnableDebug = true
conf.DisableAnonymousSignature = true
conf.EnableUi = true
conf.BindAddr = "127.0.0.1"
return conf
}