coseyo
d1481ea659
move assignment to init
2016-01-25 23:00:09 +08:00
coseyo
09d3d89c6f
fix test error again
2016-01-24 00:47:37 +08:00
coseyo
3031bdd176
fix test error
2016-01-24 00:40:03 +08:00
coseyo
4c1cfc1386
fix path issue
2016-01-24 00:18:16 +08:00
coseyo
cb5fd49612
fix conf load bug
2016-01-22 18:03:02 +08:00
astaxie
6f786e1dea
golint config.go
2016-01-18 00:22:11 +08:00
astaxie
f925bb9058
golint all the files
2016-01-18 00:18:21 +08:00
JessonChan
52083de720
typo fixed
...
seperator => separator
2016-01-15 14:07:37 +08:00
astaxie
6660720ce6
update some config name
2016-01-12 21:55:02 +08:00
astaxie
01012fa898
admin configure
2016-01-08 01:40:19 +08:00
astaxie
c68505e451
read config from app.conf for session
2016-01-07 23:55:55 +08:00
astaxie
98f3fecc03
fix the typo
2016-01-07 23:35:01 +08:00
astaxie
c6141f5d94
add httpsaddr
2016-01-07 23:31:33 +08:00
astaxie
a411042416
fix the init parse for config
2016-01-06 14:55:18 +08:00
Vitaly Velikodny
48fd9675ad
Refactoring: Move dev & prod runmodes to const
2015-12-29 21:32:37 +03:00
fud
c43e3d6684
fix type mismatch error
2015-12-21 16:05:26 +08:00
fuxiaohei
f9138c5a99
simplify config.go
2015-12-17 20:05:00 +08:00
astaxie
f2edfbe7ae
make the other three beauty
2015-12-10 00:12:52 +08:00
astaxie
4f829af7aa
gofmt the config default
2015-12-10 00:11:24 +08:00
astaxie
d1bba02958
refact beego config
2015-12-09 23:35:04 +08:00
Ryan A. Chapman
7151b96465
Log config parsing errors
...
Beego currently handles the case of "conf/app.conf"
not existing, but all other errors are not logged.
This fixes that.
I ran into an issue where beego was not listening on the
correct port, and it turned out that the conf/app.conf file
had a colon ":" instead of an equal sign "=" (confusion of
INI vs YAML formats). When there was a parsing error, beego
would give up on parsing app.conf and not log anything to the
console.
2015-11-29 15:09:28 -07:00
astaxie
9b725c73c3
Merge pull request #1376 from JessonChan/develop
...
static file code refactor and bug fixed
2015-11-08 23:21:16 +08:00
JessonChan
860568cb6c
modified as astaxie reviews
...
https://github.com/astaxie/beego/pull/1376
2015-11-06 18:51:53 +08:00
John Deng
205de8418d
Fixed typos
2015-11-03 23:43:34 +08:00
JessonChan
936cb735e1
file extensions bug fixed
2015-09-22 13:27:35 +08:00
JessonChan
f708ce0299
当有设置的压缩类型时,丢弃默认类型(css,js)
2015-09-22 12:24:52 +08:00
JessonChan
b9fb3a62f5
static file name default lower case
2015-09-22 11:59:48 +08:00
astaxie
ff5b09fc19
golint context
2015-09-10 15:31:09 +08:00
astaxie
f28a941e26
make golint happy and also make the config readable
2015-09-07 23:19:42 +08:00
astaxie
eb3479b753
optimize the app structure
2015-09-06 23:00:42 +08:00
astaxie
4138fe0217
beego suppot graceful restart application
2015-05-25 09:10:37 +08:00
astaxie
d446b5b011
improve the defaultval
2015-05-25 09:10:36 +08:00
astaxie
2ba12ad1e1
config read and set support Runmode
2015-05-25 09:10:35 +08:00
astaxie
3aceaf8838
error support controller
2015-02-26 23:34:43 +08:00
git
d0b43ef4f5
beego.AppConfig.Strings bug
2014-11-20 16:35:04 +08:00
astaxie
bb795847da
fix the not exist config file application
2014-11-06 11:12:00 +08:00
astaxie
15242d89ce
simple the session init
2014-11-04 19:08:06 +08:00
astaxie
716962672f
fix #751
...
add config ListenTCP4
when user want to listen on the TCP4, because now almost use the ipv4.
but default lister on the ipv6
2014-11-03 15:06:25 +08:00
astaxie
94c84b846f
fix the init logger
2014-10-31 09:02:16 +08:00
astaxie
71149218d1
fix the log level
2014-10-30 17:43:32 +08:00
astaxie
14114018ea
config ini support include
2014-10-24 19:03:27 +08:00
astaxie
ec6383c07d
Merge pull request #858 from bsingr/develop
...
Allow to use fastcgi via standard io.
2014-10-20 18:30:10 +08:00
Jens Bissinger
812950b60d
Allow to use fastcgi via standard io.
2014-10-13 13:47:44 +02:00
Bill Davis
a27f5c0dc0
Remove dependency of third party lib
2014-10-09 09:17:10 -04:00
Bill Davis
a06e0f27ad
Support run mode set by env var BEEGO_RUNMODE
2014-10-08 15:00:07 -04:00
astaxie
8716185de8
fix #794
2014-10-01 22:10:33 +08:00
astaxie
3a5de83ec2
beego: support router case sensitive
2014-09-28 22:10:43 +08:00
astaxie
a144769515
update the documents & comments
2014-08-18 16:41:43 +08:00
astaxie
3d74a1a436
make the getconfig public
...
// Getconfig throw the Runmode
// [dev]
// name = astaixe
// IsEnable = false
// [prod]
// name = slene
// IsEnable = true
//
// usage:
// GetConfig("string", "name")
// GetConfig("bool", "IsEnable")
2014-08-11 22:13:18 +08:00
astaxie
d7a5281bda
session: support cookie domain
2014-08-04 16:21:06 +08:00