1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-18 12:04:13 +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
TemplateLeft string
TemplateRight string
BeegoServerName string
)
func init() {
@ -80,6 +81,7 @@ func init() {
XSRFExpire = 0
TemplateLeft = "{{"
TemplateRight = "}}"
BeegoServerName = "beegoServer"
ParseConfig()
runtime.GOMAXPROCS(runtime.NumCPU())
}
@ -173,6 +175,9 @@ func ParseConfig() (err error) {
if keyfile := AppConfig.String("HttpKeyFile"); keyfile != "" {
HttpKeyFile = keyfile
}
if serverName := AppConfig.String("BeegoServerName"); serverName != "" {
BeegoServerName = serverName
}
}
return nil
}

View File

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