From 4fa625dea6a520d55b3cd1ec61104ea51f4696c0 Mon Sep 17 00:00:00 2001 From: astaxie Date: Sat, 7 Dec 2013 17:22:57 +0800 Subject: [PATCH] default app HttpAddr should none --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index d686ae12..738ef4dd 100644 --- a/config.go +++ b/config.go @@ -72,7 +72,7 @@ func init() { TemplateCache = make(map[string]*template.Template) // set this to 0.0.0.0 to make this app available to externally - HttpAddr = "127.0.0.1" + HttpAddr = "" HttpPort = 8080 AppName = "beego"