#1878 Set default bind address to 127.0.0.1 in development mode

This commit is contained in:
Alex Myasoedov 2016-04-07 21:25:33 +03:00
parent 6593e6128d
commit b89c2063bd
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
}