1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-26 18:24:14 +00:00
This commit is contained in:
astaxie 2013-10-28 22:38:50 +08:00
parent 060631e952
commit 3ac5eec301
2 changed files with 6 additions and 1 deletions

View File

@ -48,6 +48,7 @@ var (
CopyRequestBody bool //When in raw application, You want to the reqeustbody CopyRequestBody bool //When in raw application, You want to the reqeustbody
TemplateLeft string TemplateLeft string
TemplateRight string TemplateRight string
BeegoServerName string
) )
func init() { func init() {
@ -80,6 +81,7 @@ func init() {
XSRFExpire = 0 XSRFExpire = 0
TemplateLeft = "{{" TemplateLeft = "{{"
TemplateRight = "}}" TemplateRight = "}}"
BeegoServerName = "beegoServer"
ParseConfig() ParseConfig()
runtime.GOMAXPROCS(runtime.NumCPU()) runtime.GOMAXPROCS(runtime.NumCPU())
} }
@ -173,6 +175,9 @@ func ParseConfig() (err error) {
if keyfile := AppConfig.String("HttpKeyFile"); keyfile != "" { if keyfile := AppConfig.String("HttpKeyFile"); keyfile != "" {
HttpKeyFile = keyfile HttpKeyFile = keyfile
} }
if serverName := AppConfig.String("BeegoServerName"); serverName != "" {
BeegoServerName = serverName
}
} }
return nil return nil
} }

View File

@ -292,7 +292,7 @@ func (p *ControllerRegistor) ServeHTTP(rw http.ResponseWriter, r *http.Request)
}() }()
w := &responseWriter{writer: rw} w := &responseWriter{writer: rw}
w.Header().Set("Server", "beegoServer") w.Header().Set("Server", BeegoServerName)
context := &beecontext.Context{ context := &beecontext.Context{
ResponseWriter: w, ResponseWriter: w,
Request: r, Request: r,