From 75d09d138ab5ee179db5f040896cb7e55eb4f524 Mon Sep 17 00:00:00 2001 From: Pengfei Xue Date: Tue, 3 Dec 2013 13:23:33 +0800 Subject: [PATCH] fix typo, use camel notation for all keys --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index ba5b782e..7148ea34 100644 --- a/config.go +++ b/config.go @@ -219,7 +219,7 @@ func ParseConfig() (err error) { HttpTLS = httptls } - if certfile := AppConfig.String("httpcertfile"); certfile != "" { + if certfile := AppConfig.String("HttpCertFile"); certfile != "" { HttpCertFile = certfile } -- GitLab