From a149e7d6506feb4003da7093cbf818c6b75ed4a4 Mon Sep 17 00:00:00 2001 From: xenolf Date: Thu, 15 Mar 2018 13:01:56 +0100 Subject: [PATCH] Fix certificate load with wildcard name --- cli_handlers.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cli_handlers.go b/cli_handlers.go index 06272744..070d21e2 100644 --- a/cli_handlers.go +++ b/cli_handlers.go @@ -357,6 +357,7 @@ func renew(c *cli.Context) error { } domain := c.GlobalStringSlice("domains")[0] + domain = strings.Replace(domain, "*", "_", -1) // load the cert resource from files. // We store the certificate, private key and metadata in different files