From 03955196a91c75a481b7004dfbb19f4ee63df58a Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Sun, 24 Sep 2017 16:25:41 +0200 Subject: [PATCH] cmd: config: build identity map not necessary with one cert but good practice --- cmd/config_logging.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/config_logging.go b/cmd/config_logging.go index 1523bca..169830e 100644 --- a/cmd/config_logging.go +++ b/cmd/config_logging.go @@ -129,6 +129,8 @@ func parseLogging(i interface{}) (c *LoggingConfig, err error) { Certificates: []tls.Certificate{cert}, RootCAs: rootCAs, } + + out.TLS.BuildNameToCertificate() } c.Outlets.Add(out, lvl)