2014-08-18 08:41:43 +00:00
|
|
|
// Copyright 2014 beego Author. All Rights Reserved.
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2013-12-03 05:15:32 +00:00
|
|
|
package beego
|
|
|
|
|
|
|
|
import (
|
2014-04-04 01:49:55 +00:00
|
|
|
"fmt"
|
2013-12-03 05:15:32 +00:00
|
|
|
"html/template"
|
|
|
|
"os"
|
2013-12-19 04:22:30 +00:00
|
|
|
"path/filepath"
|
2013-12-03 05:15:32 +00:00
|
|
|
"runtime"
|
|
|
|
"strings"
|
2013-12-03 11:26:51 +00:00
|
|
|
|
|
|
|
"github.com/astaxie/beego/config"
|
2013-12-19 04:22:30 +00:00
|
|
|
"github.com/astaxie/beego/logs"
|
2013-12-03 11:26:51 +00:00
|
|
|
"github.com/astaxie/beego/session"
|
2014-04-01 10:08:00 +00:00
|
|
|
"github.com/astaxie/beego/utils"
|
2013-12-03 05:15:32 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2015-09-07 15:19:42 +00:00
|
|
|
// AccessLogs represent whether output the access logs, default is false
|
|
|
|
AccessLogs bool
|
|
|
|
// AdminHTTPAddr is address for admin
|
|
|
|
AdminHTTPAddr string
|
|
|
|
// AdminHTTPPort is listens port for admin
|
|
|
|
AdminHTTPPort int
|
|
|
|
// AppConfig is the instance of Config, store the config information from file
|
|
|
|
AppConfig *beegoAppConfig
|
|
|
|
// AppName represent Application name, always the project folder name
|
|
|
|
AppName string
|
|
|
|
// AppPath is the path to the application
|
|
|
|
AppPath string
|
|
|
|
// AppConfigPath is the path to the config files
|
|
|
|
AppConfigPath string
|
|
|
|
// AppConfigProvider is the provider for the config, default is ini
|
|
|
|
AppConfigProvider string
|
|
|
|
// AutoRender is a flag of render template automatically. It's always turn off in API application
|
|
|
|
// default is true
|
|
|
|
AutoRender bool
|
|
|
|
// BeegoServerName exported in response header.
|
|
|
|
BeegoServerName string
|
|
|
|
// CopyRequestBody is just useful for raw request body in context. default is false
|
|
|
|
CopyRequestBody bool
|
|
|
|
// DirectoryIndex wheather display directory index. default is false.
|
|
|
|
DirectoryIndex bool
|
|
|
|
// EnableAdmin means turn on admin module to log every request info.
|
|
|
|
EnableAdmin bool
|
|
|
|
// EnableDocs enable generate docs & server docs API Swagger
|
|
|
|
EnableDocs bool
|
|
|
|
// EnableErrorsShow wheather show errors in page. if true, show error and trace info in page rendered with error template.
|
|
|
|
EnableErrorsShow bool
|
|
|
|
// EnabelFcgi turn on the fcgi Listen, default is false
|
|
|
|
EnabelFcgi bool
|
|
|
|
// EnableGzip means gzip the response
|
|
|
|
EnableGzip bool
|
|
|
|
// EnableHTTPListen represent whether turn on the HTTP, default is true
|
|
|
|
EnableHTTPListen bool
|
|
|
|
// EnableHTTPTLS represent whether turn on the HTTPS, default is true
|
|
|
|
EnableHTTPTLS bool
|
|
|
|
// EnableStdIo works with EnabelFcgi Use FCGI via standard I/O
|
|
|
|
EnableStdIo bool
|
|
|
|
// EnableXSRF whether turn on xsrf. default is false
|
|
|
|
EnableXSRF bool
|
|
|
|
// FlashName is the name of the flash variable found in response header and cookie
|
|
|
|
FlashName string
|
|
|
|
// FlashSeperator used to seperate flash key:value, default is BEEGOFLASH
|
|
|
|
FlashSeperator string
|
|
|
|
// GlobalSessions is the instance for the session manager
|
|
|
|
GlobalSessions *session.Manager
|
|
|
|
// Graceful means use graceful module to start the server
|
|
|
|
Graceful bool
|
|
|
|
// workPath is always the same as AppPath, but sometime when it started with other
|
|
|
|
// program, like supervisor
|
|
|
|
workPath string
|
|
|
|
// ListenTCP4 represent only Listen in TCP4, default is false
|
|
|
|
ListenTCP4 bool
|
|
|
|
// MaxMemory The whole request body is parsed and up to a total of maxMemory
|
|
|
|
// bytes of its file parts are stored in memory, with the remainder stored on disk in temporary files
|
|
|
|
MaxMemory int64
|
|
|
|
// HTTPAddr is the TCP network address addr for HTTP
|
|
|
|
HTTPAddr string
|
|
|
|
// HTTPPort is listens port for HTTP
|
|
|
|
HTTPPort int
|
|
|
|
// HTTPSPort is listens port for HTTPS
|
|
|
|
HTTPSPort int
|
|
|
|
// HTTPCertFile is the path to certificate file
|
|
|
|
HTTPCertFile string
|
|
|
|
// HTTPKeyFile is the path to private key file
|
|
|
|
HTTPKeyFile string
|
|
|
|
// HTTPServerTimeOut HTTP server timeout. default is 0, no timeout
|
|
|
|
HTTPServerTimeOut int64
|
|
|
|
// RecoverPanic is a flag for auto recover panic, default is true
|
|
|
|
RecoverPanic bool
|
|
|
|
// RouterCaseSensitive means whether router case sensitive, default is true
|
|
|
|
RouterCaseSensitive bool
|
|
|
|
// RunMode represent the staging, "dev" or "prod"
|
|
|
|
RunMode string
|
|
|
|
// SessionOn means whether turn on the session auto when application started. default is false.
|
|
|
|
SessionOn bool
|
|
|
|
// SessionProvider means session provider, e.q memory, mysql, redis,etc.
|
|
|
|
SessionProvider string
|
|
|
|
// SessionName is the cookie name when saving session id into cookie.
|
|
|
|
SessionName string
|
|
|
|
// SessionGCMaxLifetime for auto cleaning expired session.
|
|
|
|
SessionGCMaxLifetime int64
|
|
|
|
// SessionProviderConfig is for the provider config, define save path or connection info.
|
|
|
|
SessionProviderConfig string
|
|
|
|
// SessionCookieLifeTime means the life time of session id in cookie.
|
|
|
|
SessionCookieLifeTime int
|
|
|
|
// SessionAutoSetCookie auto setcookie
|
|
|
|
SessionAutoSetCookie bool
|
|
|
|
// SessionDomain means the cookie domain default is empty
|
|
|
|
SessionDomain string
|
|
|
|
// StaticDir store the static path, key is path, value is the folder
|
|
|
|
StaticDir map[string]string
|
|
|
|
// StaticExtensionsToGzip stores the extensions which need to gzip(.js,.css,etc)
|
|
|
|
StaticExtensionsToGzip []string
|
|
|
|
// TemplateCache store the caching template
|
|
|
|
TemplateCache map[string]*template.Template
|
|
|
|
// TemplateLeft left delimiter
|
|
|
|
TemplateLeft string
|
|
|
|
// TemplateRight right delimiter
|
|
|
|
TemplateRight string
|
|
|
|
// ViewsPath means the template folder
|
|
|
|
ViewsPath string
|
|
|
|
// XSRFKEY xsrf hash salt string.
|
|
|
|
XSRFKEY string
|
|
|
|
// XSRFExpire is the expiry of xsrf value.
|
|
|
|
XSRFExpire int
|
2013-12-03 05:15:32 +00:00
|
|
|
)
|
|
|
|
|
2014-10-09 13:17:10 +00:00
|
|
|
type beegoAppConfig struct {
|
2015-09-10 07:31:09 +00:00
|
|
|
innerConfig config.Configer
|
2014-10-09 13:17:10 +00:00
|
|
|
}
|
2014-10-01 14:10:33 +00:00
|
|
|
|
2014-10-24 11:03:27 +00:00
|
|
|
func newAppConfig(AppConfigProvider, AppConfigPath string) (*beegoAppConfig, error) {
|
2014-10-01 14:10:33 +00:00
|
|
|
ac, err := config.NewConfig(AppConfigProvider, AppConfigPath)
|
|
|
|
if err != nil {
|
2014-10-24 11:03:27 +00:00
|
|
|
return nil, err
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
|
|
|
rac := &beegoAppConfig{ac}
|
2014-10-24 11:03:27 +00:00
|
|
|
return rac, nil
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *beegoAppConfig) Set(key, val string) error {
|
2015-04-05 15:21:13 +00:00
|
|
|
err := b.innerConfig.Set(RunMode+"::"+key, val)
|
|
|
|
if err == nil {
|
|
|
|
return err
|
|
|
|
}
|
2014-10-01 14:10:33 +00:00
|
|
|
return b.innerConfig.Set(key, val)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *beegoAppConfig) String(key string) string {
|
|
|
|
v := b.innerConfig.String(RunMode + "::" + key)
|
|
|
|
if v == "" {
|
|
|
|
return b.innerConfig.String(key)
|
|
|
|
}
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *beegoAppConfig) Strings(key string) []string {
|
|
|
|
v := b.innerConfig.Strings(RunMode + "::" + key)
|
2014-11-20 08:35:04 +00:00
|
|
|
if v[0] == "" {
|
2014-10-01 14:10:33 +00:00
|
|
|
return b.innerConfig.Strings(key)
|
|
|
|
}
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *beegoAppConfig) Int(key string) (int, error) {
|
|
|
|
v, err := b.innerConfig.Int(RunMode + "::" + key)
|
|
|
|
if err != nil {
|
|
|
|
return b.innerConfig.Int(key)
|
|
|
|
}
|
|
|
|
return v, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *beegoAppConfig) Int64(key string) (int64, error) {
|
|
|
|
v, err := b.innerConfig.Int64(RunMode + "::" + key)
|
|
|
|
if err != nil {
|
|
|
|
return b.innerConfig.Int64(key)
|
|
|
|
}
|
|
|
|
return v, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *beegoAppConfig) Bool(key string) (bool, error) {
|
|
|
|
v, err := b.innerConfig.Bool(RunMode + "::" + key)
|
|
|
|
if err != nil {
|
|
|
|
return b.innerConfig.Bool(key)
|
|
|
|
}
|
|
|
|
return v, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *beegoAppConfig) Float(key string) (float64, error) {
|
|
|
|
v, err := b.innerConfig.Float(RunMode + "::" + key)
|
|
|
|
if err != nil {
|
|
|
|
return b.innerConfig.Float(key)
|
|
|
|
}
|
|
|
|
return v, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *beegoAppConfig) DefaultString(key string, defaultval string) string {
|
2015-04-05 15:21:13 +00:00
|
|
|
v := b.String(key)
|
|
|
|
if v != "" {
|
|
|
|
return v
|
|
|
|
}
|
2015-04-05 15:23:35 +00:00
|
|
|
return defaultval
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *beegoAppConfig) DefaultStrings(key string, defaultval []string) []string {
|
2015-04-05 15:21:13 +00:00
|
|
|
v := b.Strings(key)
|
|
|
|
if len(v) != 0 {
|
|
|
|
return v
|
|
|
|
}
|
2015-04-05 15:23:35 +00:00
|
|
|
return defaultval
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *beegoAppConfig) DefaultInt(key string, defaultval int) int {
|
2015-04-05 15:21:13 +00:00
|
|
|
v, err := b.Int(key)
|
|
|
|
if err == nil {
|
|
|
|
return v
|
|
|
|
}
|
2015-04-05 15:23:35 +00:00
|
|
|
return defaultval
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *beegoAppConfig) DefaultInt64(key string, defaultval int64) int64 {
|
2015-04-05 15:21:13 +00:00
|
|
|
v, err := b.Int64(key)
|
|
|
|
if err == nil {
|
|
|
|
return v
|
|
|
|
}
|
2015-04-05 15:23:35 +00:00
|
|
|
return defaultval
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *beegoAppConfig) DefaultBool(key string, defaultval bool) bool {
|
2015-04-05 15:21:13 +00:00
|
|
|
v, err := b.Bool(key)
|
|
|
|
if err == nil {
|
|
|
|
return v
|
|
|
|
}
|
2015-04-05 15:23:35 +00:00
|
|
|
return defaultval
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *beegoAppConfig) DefaultFloat(key string, defaultval float64) float64 {
|
2015-04-05 15:21:13 +00:00
|
|
|
v, err := b.Float(key)
|
|
|
|
if err == nil {
|
|
|
|
return v
|
|
|
|
}
|
2015-04-05 15:23:35 +00:00
|
|
|
return defaultval
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *beegoAppConfig) DIY(key string) (interface{}, error) {
|
|
|
|
return b.innerConfig.DIY(key)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *beegoAppConfig) GetSection(section string) (map[string]string, error) {
|
|
|
|
return b.innerConfig.GetSection(section)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *beegoAppConfig) SaveConfigFile(filename string) error {
|
|
|
|
return b.innerConfig.SaveConfigFile(filename)
|
|
|
|
}
|
|
|
|
|
2013-12-04 09:03:49 +00:00
|
|
|
func init() {
|
2014-04-01 10:08:00 +00:00
|
|
|
workPath, _ = os.Getwd()
|
|
|
|
workPath, _ = filepath.Abs(workPath)
|
2013-12-04 15:53:36 +00:00
|
|
|
// initialize default configurations
|
2013-12-19 04:22:30 +00:00
|
|
|
AppPath, _ = filepath.Abs(filepath.Dir(os.Args[0]))
|
2014-04-01 10:08:00 +00:00
|
|
|
|
|
|
|
AppConfigPath = filepath.Join(AppPath, "conf", "app.conf")
|
|
|
|
|
|
|
|
if workPath != AppPath {
|
|
|
|
if utils.FileExists(AppConfigPath) {
|
|
|
|
os.Chdir(AppPath)
|
|
|
|
} else {
|
|
|
|
AppConfigPath = filepath.Join(workPath, "conf", "app.conf")
|
|
|
|
}
|
|
|
|
}
|
2013-12-04 15:53:36 +00:00
|
|
|
|
2014-05-25 14:37:38 +00:00
|
|
|
AppConfigProvider = "ini"
|
|
|
|
|
2013-12-03 05:15:32 +00:00
|
|
|
StaticDir = make(map[string]string)
|
2013-12-04 15:53:36 +00:00
|
|
|
StaticDir["/static"] = "static"
|
2013-12-18 15:23:00 +00:00
|
|
|
|
2013-12-14 18:34:27 +00:00
|
|
|
StaticExtensionsToGzip = []string{".css", ".js"}
|
2013-12-04 15:53:36 +00:00
|
|
|
|
2013-12-06 05:46:14 +00:00
|
|
|
TemplateCache = make(map[string]*template.Template)
|
2013-12-04 15:53:36 +00:00
|
|
|
|
|
|
|
// set this to 0.0.0.0 to make this app available to externally
|
2015-09-07 15:19:42 +00:00
|
|
|
EnableHTTPListen = true //default enable http Listen
|
2014-05-20 08:41:39 +00:00
|
|
|
|
2015-09-07 15:19:42 +00:00
|
|
|
HTTPAddr = ""
|
|
|
|
HTTPPort = 8080
|
2013-12-04 15:53:36 +00:00
|
|
|
|
2015-09-07 15:19:42 +00:00
|
|
|
HTTPSPort = 10443
|
2014-05-20 07:30:17 +00:00
|
|
|
|
2013-12-03 05:15:32 +00:00
|
|
|
AppName = "beego"
|
2013-12-04 15:53:36 +00:00
|
|
|
|
2013-12-03 05:15:32 +00:00
|
|
|
RunMode = "dev" //default runmod
|
2013-12-04 15:53:36 +00:00
|
|
|
|
2013-12-03 05:15:32 +00:00
|
|
|
AutoRender = true
|
2013-12-04 15:53:36 +00:00
|
|
|
|
2013-12-03 05:15:32 +00:00
|
|
|
RecoverPanic = true
|
2013-12-04 15:53:36 +00:00
|
|
|
|
2013-12-03 05:15:32 +00:00
|
|
|
ViewsPath = "views"
|
2013-12-04 15:53:36 +00:00
|
|
|
|
2013-12-03 05:15:32 +00:00
|
|
|
SessionOn = false
|
|
|
|
SessionProvider = "memory"
|
|
|
|
SessionName = "beegosessionID"
|
|
|
|
SessionGCMaxLifetime = 3600
|
2015-09-07 15:19:42 +00:00
|
|
|
SessionProviderConfig = ""
|
2013-12-12 02:43:13 +00:00
|
|
|
SessionCookieLifeTime = 0 //set cookie default is the brower life
|
2014-01-05 06:59:39 +00:00
|
|
|
SessionAutoSetCookie = true
|
2013-12-04 15:53:36 +00:00
|
|
|
|
2013-12-20 14:35:16 +00:00
|
|
|
MaxMemory = 1 << 26 //64MB
|
2013-12-04 15:53:36 +00:00
|
|
|
|
2015-09-07 15:19:42 +00:00
|
|
|
HTTPServerTimeOut = 0
|
2013-12-04 15:53:36 +00:00
|
|
|
|
2015-09-07 15:19:42 +00:00
|
|
|
EnableErrorsShow = true
|
2013-12-04 15:53:36 +00:00
|
|
|
|
2013-12-03 05:15:32 +00:00
|
|
|
XSRFKEY = "beegoxsrf"
|
|
|
|
XSRFExpire = 0
|
2013-12-04 15:53:36 +00:00
|
|
|
|
2013-12-03 05:15:32 +00:00
|
|
|
TemplateLeft = "{{"
|
|
|
|
TemplateRight = "}}"
|
2013-12-04 15:53:36 +00:00
|
|
|
|
2014-05-25 14:35:20 +00:00
|
|
|
BeegoServerName = "beegoServer:" + VERSION
|
2013-12-04 15:53:36 +00:00
|
|
|
|
2013-12-18 15:23:00 +00:00
|
|
|
EnableAdmin = false
|
2015-09-07 15:19:42 +00:00
|
|
|
AdminHTTPAddr = "127.0.0.1"
|
|
|
|
AdminHTTPPort = 8088
|
2013-12-04 15:53:36 +00:00
|
|
|
|
2014-03-14 05:30:12 +00:00
|
|
|
FlashName = "BEEGO_FLASH"
|
|
|
|
FlashSeperator = "BEEGOFLASH"
|
|
|
|
|
2014-09-28 14:10:43 +00:00
|
|
|
RouterCaseSensitive = true
|
|
|
|
|
2013-12-03 05:15:32 +00:00
|
|
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
2013-12-04 15:53:36 +00:00
|
|
|
|
2013-12-19 04:22:30 +00:00
|
|
|
// init BeeLogger
|
|
|
|
BeeLogger = logs.NewLogger(10000)
|
2014-04-04 01:49:55 +00:00
|
|
|
err := BeeLogger.SetLogger("console", "")
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("init console log error:", err)
|
|
|
|
}
|
2014-10-31 01:02:16 +00:00
|
|
|
SetLogFuncCall(true)
|
2013-12-19 04:22:30 +00:00
|
|
|
|
2014-04-04 01:49:55 +00:00
|
|
|
err = ParseConfig()
|
2014-11-06 03:12:00 +00:00
|
|
|
if err != nil && os.IsNotExist(err) {
|
2013-12-09 16:17:22 +00:00
|
|
|
// for init if doesn't have app.conf will not panic
|
2014-10-24 11:03:27 +00:00
|
|
|
ac := config.NewFakeConfig()
|
|
|
|
AppConfig = &beegoAppConfig{ac}
|
|
|
|
Warning(err)
|
2013-12-04 15:53:36 +00:00
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
}
|
|
|
|
|
2013-12-20 13:16:26 +00:00
|
|
|
// ParseConfig parsed default config file.
|
|
|
|
// now only support ini, next will support json.
|
2013-12-03 05:15:32 +00:00
|
|
|
func ParseConfig() (err error) {
|
2014-10-24 11:03:27 +00:00
|
|
|
AppConfig, err = newAppConfig(AppConfigProvider, AppConfigPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2014-10-09 13:17:10 +00:00
|
|
|
envRunMode := os.Getenv("BEEGO_RUNMODE")
|
2014-10-01 14:10:33 +00:00
|
|
|
// set the runmode first
|
2014-10-09 13:17:10 +00:00
|
|
|
if envRunMode != "" {
|
|
|
|
RunMode = envRunMode
|
2014-10-08 19:00:07 +00:00
|
|
|
} else if runmode := AppConfig.String("RunMode"); runmode != "" {
|
2014-10-01 14:10:33 +00:00
|
|
|
RunMode = runmode
|
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2015-09-07 15:19:42 +00:00
|
|
|
HTTPAddr = AppConfig.String("HTTPAddr")
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2015-09-07 15:19:42 +00:00
|
|
|
if v, err := AppConfig.Int("HTTPPort"); err == nil {
|
|
|
|
HTTPPort = v
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
2014-05-20 07:30:17 +00:00
|
|
|
|
2014-11-03 07:06:25 +00:00
|
|
|
if v, err := AppConfig.Bool("ListenTCP4"); err == nil {
|
|
|
|
ListenTCP4 = v
|
|
|
|
}
|
|
|
|
|
2015-09-07 15:19:42 +00:00
|
|
|
if v, err := AppConfig.Bool("EnableHTTPListen"); err == nil {
|
|
|
|
EnableHTTPListen = v
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if maxmemory, err := AppConfig.Int64("MaxMemory"); err == nil {
|
|
|
|
MaxMemory = maxmemory
|
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if appname := AppConfig.String("AppName"); appname != "" {
|
|
|
|
AppName = appname
|
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if autorender, err := AppConfig.Bool("AutoRender"); err == nil {
|
|
|
|
AutoRender = autorender
|
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if autorecover, err := AppConfig.Bool("RecoverPanic"); err == nil {
|
|
|
|
RecoverPanic = autorecover
|
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if views := AppConfig.String("ViewsPath"); views != "" {
|
|
|
|
ViewsPath = views
|
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if sessionon, err := AppConfig.Bool("SessionOn"); err == nil {
|
|
|
|
SessionOn = sessionon
|
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if sessProvider := AppConfig.String("SessionProvider"); sessProvider != "" {
|
|
|
|
SessionProvider = sessProvider
|
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if sessName := AppConfig.String("SessionName"); sessName != "" {
|
|
|
|
SessionName = sessName
|
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2015-09-07 15:19:42 +00:00
|
|
|
if sessProvConfig := AppConfig.String("SessionProviderConfig"); sessProvConfig != "" {
|
|
|
|
SessionProviderConfig = sessProvConfig
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if sessMaxLifeTime, err := AppConfig.Int64("SessionGCMaxLifetime"); err == nil && sessMaxLifeTime != 0 {
|
|
|
|
SessionGCMaxLifetime = sessMaxLifeTime
|
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if sesscookielifetime, err := AppConfig.Int("SessionCookieLifeTime"); err == nil && sesscookielifetime != 0 {
|
|
|
|
SessionCookieLifeTime = sesscookielifetime
|
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2015-09-07 15:19:42 +00:00
|
|
|
if enabelFcgi, err := AppConfig.Bool("EnabelFcgi"); err == nil {
|
|
|
|
EnabelFcgi = enabelFcgi
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if enablegzip, err := AppConfig.Bool("EnableGzip"); err == nil {
|
|
|
|
EnableGzip = enablegzip
|
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if directoryindex, err := AppConfig.Bool("DirectoryIndex"); err == nil {
|
|
|
|
DirectoryIndex = directoryindex
|
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2015-09-07 15:19:42 +00:00
|
|
|
if timeout, err := AppConfig.Int64("HTTPServerTimeOut"); err == nil {
|
|
|
|
HTTPServerTimeOut = timeout
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2015-09-07 15:19:42 +00:00
|
|
|
if errorsshow, err := AppConfig.Bool("EnableErrorsShow"); err == nil {
|
|
|
|
EnableErrorsShow = errorsshow
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if copyrequestbody, err := AppConfig.Bool("CopyRequestBody"); err == nil {
|
|
|
|
CopyRequestBody = copyrequestbody
|
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if xsrfkey := AppConfig.String("XSRFKEY"); xsrfkey != "" {
|
|
|
|
XSRFKEY = xsrfkey
|
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if enablexsrf, err := AppConfig.Bool("EnableXSRF"); err == nil {
|
|
|
|
EnableXSRF = enablexsrf
|
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if expire, err := AppConfig.Int("XSRFExpire"); err == nil {
|
|
|
|
XSRFExpire = expire
|
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if tplleft := AppConfig.String("TemplateLeft"); tplleft != "" {
|
|
|
|
TemplateLeft = tplleft
|
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if tplright := AppConfig.String("TemplateRight"); tplright != "" {
|
|
|
|
TemplateRight = tplright
|
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2015-09-07 15:19:42 +00:00
|
|
|
if httptls, err := AppConfig.Bool("EnableHTTPTLS"); err == nil {
|
|
|
|
EnableHTTPTLS = httptls
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
2014-05-20 07:30:17 +00:00
|
|
|
|
2015-09-07 15:19:42 +00:00
|
|
|
if httpsport, err := AppConfig.Int("HTTPSPort"); err == nil {
|
|
|
|
HTTPSPort = httpsport
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2015-09-07 15:19:42 +00:00
|
|
|
if certfile := AppConfig.String("HTTPCertFile"); certfile != "" {
|
|
|
|
HTTPCertFile = certfile
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2015-09-07 15:19:42 +00:00
|
|
|
if keyfile := AppConfig.String("HTTPKeyFile"); keyfile != "" {
|
|
|
|
HTTPKeyFile = keyfile
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if serverName := AppConfig.String("BeegoServerName"); serverName != "" {
|
|
|
|
BeegoServerName = serverName
|
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if flashname := AppConfig.String("FlashName"); flashname != "" {
|
|
|
|
FlashName = flashname
|
|
|
|
}
|
2014-03-14 05:30:12 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if flashseperator := AppConfig.String("FlashSeperator"); flashseperator != "" {
|
|
|
|
FlashSeperator = flashseperator
|
|
|
|
}
|
2014-03-14 05:30:12 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if sd := AppConfig.String("StaticDir"); sd != "" {
|
|
|
|
for k := range StaticDir {
|
|
|
|
delete(StaticDir, k)
|
|
|
|
}
|
|
|
|
sds := strings.Fields(sd)
|
|
|
|
for _, v := range sds {
|
|
|
|
if url2fsmap := strings.SplitN(v, ":", 2); len(url2fsmap) == 2 {
|
|
|
|
StaticDir["/"+strings.TrimRight(url2fsmap[0], "/")] = url2fsmap[1]
|
|
|
|
} else {
|
|
|
|
StaticDir["/"+strings.TrimRight(url2fsmap[0], "/")] = url2fsmap[0]
|
2013-12-03 05:15:32 +00:00
|
|
|
}
|
|
|
|
}
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
2013-12-18 15:23:00 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if sgz := AppConfig.String("StaticExtensionsToGzip"); sgz != "" {
|
|
|
|
extensions := strings.Split(sgz, ",")
|
|
|
|
if len(extensions) > 0 {
|
|
|
|
StaticExtensionsToGzip = []string{}
|
|
|
|
for _, ext := range extensions {
|
|
|
|
if len(ext) == 0 {
|
|
|
|
continue
|
2013-12-14 18:34:27 +00:00
|
|
|
}
|
2014-10-01 14:10:33 +00:00
|
|
|
extWithDot := ext
|
|
|
|
if extWithDot[:1] != "." {
|
|
|
|
extWithDot = "." + extWithDot
|
|
|
|
}
|
|
|
|
StaticExtensionsToGzip = append(StaticExtensionsToGzip, extWithDot)
|
2013-12-14 18:34:27 +00:00
|
|
|
}
|
|
|
|
}
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if enableadmin, err := AppConfig.Bool("EnableAdmin"); err == nil {
|
|
|
|
EnableAdmin = enableadmin
|
|
|
|
}
|
2013-12-03 05:15:32 +00:00
|
|
|
|
2015-09-07 15:19:42 +00:00
|
|
|
if adminhttpaddr := AppConfig.String("AdminHTTPAddr"); adminhttpaddr != "" {
|
|
|
|
AdminHTTPAddr = adminhttpaddr
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
2014-06-16 08:05:15 +00:00
|
|
|
|
2015-09-07 15:19:42 +00:00
|
|
|
if adminhttpport, err := AppConfig.Int("AdminHTTPPort"); err == nil {
|
|
|
|
AdminHTTPPort = adminhttpport
|
2014-10-01 14:10:33 +00:00
|
|
|
}
|
2014-09-28 14:10:43 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if enabledocs, err := AppConfig.Bool("EnableDocs"); err == nil {
|
|
|
|
EnableDocs = enabledocs
|
2013-12-03 05:15:32 +00:00
|
|
|
}
|
2014-06-11 04:00:50 +00:00
|
|
|
|
2014-10-01 14:10:33 +00:00
|
|
|
if casesensitive, err := AppConfig.Bool("RouterCaseSensitive"); err == nil {
|
|
|
|
RouterCaseSensitive = casesensitive
|
2014-06-11 04:00:50 +00:00
|
|
|
}
|
2015-05-13 13:17:47 +00:00
|
|
|
if graceful, err := AppConfig.Bool("Graceful"); err == nil {
|
|
|
|
Graceful = graceful
|
|
|
|
}
|
2014-10-01 14:10:33 +00:00
|
|
|
return nil
|
2014-06-11 04:00:50 +00:00
|
|
|
}
|