From b4b800565c9602b8e3d1690dd98b6e9114bc0889 Mon Sep 17 00:00:00 2001 From: Eugene Bujak Date: Wed, 13 Feb 2019 11:46:52 +0300 Subject: [PATCH] Fixup for "validate certificates". --- app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.go b/app.go index f0f2addf..0d473a6f 100644 --- a/app.go +++ b/app.go @@ -183,7 +183,7 @@ func run(args options) { log.Fatal(err) os.Exit(1) } - confing.TLS = data // update warnings + config.TLS = data // update warnings // prepare cert for HTTPS server cert, err := tls.X509KeyPair([]byte(config.TLS.CertificateChain), []byte(config.TLS.PrivateKey))