1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-23 00:11:00 +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 HttpTLS = httptls
} }
if certfile := AppConfig.String("httpcertfile"); certfile != "" { if certfile := AppConfig.String("HttpCertFile"); certfile != "" {
HttpCertFile = certfile HttpCertFile = certfile
} }