summaryrefslogtreecommitdiffstats
path: root/cmd/web_acme.go
diff options
context:
space:
mode:
author6543 <6543@obermui.de>2022-05-10 12:32:42 +0200
committerGitHub <noreply@github.com>2022-05-10 12:32:42 +0200
commit65ccff54efad84e3ff76547ce5f1b135b6a3e943 (patch)
tree765f8275e1ebf38c2a7c7d82294fa443a6b9d93a /cmd/web_acme.go
parent443675d18072d2a345bc4644d3f52dee42f58b44 (diff)
downloadgitea-65ccff54efad84e3ff76547ce5f1b135b6a3e943.tar.gz
gitea-65ccff54efad84e3ff76547ce5f1b135b6a3e943.zip
Update go deps (#19665)
* update gitea.com/go-chi/binding * update github.com/42wim/sshsig * update github.com/PuerkitoBio/goquery * update github.com/blevesearch/bleve/v2 * update github.com/caddyserver/certmagic * update github.com/duo-labs/webauthn * update github.com/editorconfig/editorconfig-core-go/v2 * update github.com/emirpasic/gods * update github.com/gliderlabs/ssh * update github.com/go-chi/cors * update github.com/go-enry/go-enry/v2 * update github.com/go-git/go-git/v5 * update github.com/go-ldap/ldap/v3 * update github.com/golang-jwt/jwt/v4 * update github.com/google/pprof * update github.com/klauspost/compress * update github.com/lib/pq * update github.com/markbates/goth * update github.com/minio/minio-go/v7 * update github.com/olivere/elastic/v7 * update github.com/unrolled/render * update github.com/urfave/cli * update github.com/xanzy/go-gitlab * update github.com/yuin/goldmark * adopt breaking changes of certmagic
Diffstat (limited to 'cmd/web_acme.go')
-rw-r--r--cmd/web_acme.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/web_acme.go b/cmd/web_acme.go
index 7dbeb14a0e..57b400dae6 100644
--- a/cmd/web_acme.go
+++ b/cmd/web_acme.go
@@ -66,7 +66,7 @@ func runACME(listenAddr string, m http.Handler) error {
log.Warn("Failed to parse CA Root certificate, using default CA trust: %v", err)
}
}
- myACME := certmagic.NewACMEManager(magic, certmagic.ACMEManager{
+ myACME := certmagic.NewACMEIssuer(magic, certmagic.ACMEIssuer{
CA: setting.AcmeURL,
TrustedRoots: certPool,
Email: setting.AcmeEmail,