Commit 5a9bff20 authored by JessonChan's avatar JessonChan

init gzip level

parent 48147f50
......@@ -22,12 +22,12 @@ import (
)
const (
// VERSION represent beego web framework version.
// VERSION represent beego web framework version.
VERSION = "1.6.1"
// DEV is for develop
// DEV is for develop
DEV = "dev"
// PROD is for production
// PROD is for production
PROD = "prod"
)
......@@ -51,6 +51,7 @@ func AddAPPStartHook(hf hookfunc) {
// beego.Run(":8089")
// beego.Run("127.0.0.1:8089")
func Run(params ...string) {
initBeforeHTTPRun()
if len(params) > 0 && params[0] != "" {
......@@ -74,6 +75,7 @@ func initBeforeHTTPRun() {
AddAPPStartHook(registerDocs)
AddAPPStartHook(registerTemplate)
AddAPPStartHook(registerAdmin)
AddAPPStartHook(registerGzip)
for _, hk := range hooks {
if err := hk(); err != nil {
......
......@@ -6,6 +6,7 @@ import (
"net/http"
"path/filepath"
"github.com/astaxie/beego/context"
"github.com/astaxie/beego/session"
)
......@@ -91,3 +92,10 @@ func registerAdmin() error {
}
return nil
}
func registerGzip() error {
if BConfig.EnableGzip {
context.InitGzip(AppConfig)
}
return nil
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment