1
0
mirror of https://github.com/astaxie/beego.git synced 2024-12-22 20:20:49 +00:00

fix typo, use camel notation for all keys

This commit is contained in:
Pengfei Xue 2013-12-03 13:23:33 +08:00
parent 07312e240c
commit 75d09d138a

View File

@ -219,7 +219,7 @@ func ParseConfig() (err error) {
HttpTLS = httptls
}
if certfile := AppConfig.String("httpcertfile"); certfile != "" {
if certfile := AppConfig.String("HttpCertFile"); certfile != "" {
HttpCertFile = certfile
}