1
0
mirror of https://github.com/astaxie/beego.git synced 2024-05-29 01:53:28 +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
}