From 52a51a4957efab0a464d807cc4066407fda25b7a Mon Sep 17 00:00:00 2001 From: Gustavo Niemeyer Date: Wed, 21 Mar 2018 15:02:43 -0300 Subject: [PATCH] Use new ForceRSA option and drop custom acme patch. --- main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main.go b/main.go index 4e5e508..49f36e8 100644 --- a/main.go +++ b/main.go @@ -87,6 +87,7 @@ func run() error { server.Addr = *httpsFlag if *acmeFlag != "" { m := autocert.Manager{ + ForceRSA: true, Prompt: autocert.AcceptTOS, Cache: autocert.DirCache(*acmeFlag), RenewBefore: 24 * 30 * time.Hour,