1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-23 14:50:19 +00:00

Merge pull request #3076 from gadelkareem/patch-1

Set default Beego RunMode to production
This commit is contained in:
astaxie
2018-03-11 16:26:00 +08:00
committed by GitHub

View File

@ -188,7 +188,7 @@ func recoverPanic(ctx *context.Context) {
func newBConfig() *Config {
return &Config{
AppName: "beego",
RunMode: DEV,
RunMode: PROD,
RouterCaseSensitive: true,
ServerName: "beegoServer:" + VERSION,
RecoverPanic: true,