- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
完整的错误消息是:
403 urn:acme:error:unauthorized: Account creation on ACMEv1 isdisabled. Please upgrade your ACME client to a version that supportsACMEv2 / RFC 8555. Seehttps://community.letsencrypt.org/t/end-of-life-plan-for-acmev1/88430for details
golang.org/x/crypto/acme/autocert
以非常普通的方式打包:
package main
import (
"crypto/tls"
"net/http"
"github.com/gin-gonic/gin"
"golang.org/x/crypto/acme/autocert"
)
func main() {
router := gin.Default()
hosts := []string{"yourdomain.com"}
certManager := autocert.Manager{
Prompt: autocert.AcceptTOS,
HostPolicy: autocert.HostWhitelist(hosts...),
Cache: autocert.DirCache("/certs"),
}
server := &http.Server{
Addr: ":https",
Handler: router,
TLSConfig: &tls.Config{
GetCertificate: certManager.GetCertificate,
},
}
server.ListenAndServeTLS("", "")
}
实际上,该代码在过去6个月中一直运行并正常运行。但是就在今天,我打开了服务器,并收到了上面的消息。
最佳答案
这个说法:
In fact this code has been running and working fine for the last 6 months. But just today I switched the server it was on and now get the above message.
golang.org/x/crypto
进行构建-检查您的
go.mod
文件并确保您使用的是相当新的版本。我最近完成了一个使用几乎相同代码的项目。我的
require
中的
go.mod
看起来像这样:
golang.org/x/crypto v0.0.0-20200602180216-279210d13fed
关于go - 是什么导致:acme:error:unauthorized 403 error in golang's acme/autocert?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62479445/
我在我的应用程序中使用 Library autocert 来生成 ssl 证书,问题是 30% 的用户对我的应用程序有问题,我当前的代码是: fmt.Println("Starting server
我正在查看一些将 autocert 与 go 网络服务器结合使用的示例代码。 hostPolicy 实现是否有可能通过动态方式实现,即从数据库中读取同时列出的主机(因为它们会不断变化)。 m := a
我目前正在构建一个使用 acme/autocert 的服务。要将该服务用于超过 1 个副本,我必须编写一个持久缓存接口(interface),如 DirCache。然后我注意到,在重新启动服务后,缓存
我正在用 go 编写一个程序,它向不同的服务器发出 HTTP 请求并读取响应。该程序在 Windows/Mac 上运行得非常好,但是当我在基于 ARM 的 Rasp Pi 3 和 Rasbian OS
我正在尝试使用 acme/autocert 在 go 中设置一个安全的 websocket 服务器 (wss://)。程序启动,但当我尝试连接到它时出现以下错误: http: TLS handshak
我想使用 autocert 和 gorila mux 生成证书,我的实际代码是: func main() { certManager := autocert.Manager{
我想使用 golang.org/x/crypto/acme/autocert 在 Golang 中使用 Let's Encrypt 设置 TLS。为什么要在 Manager 中设置 HostPolic
我有两台独立的服务器,它们使用相同的域名和不同的前缀,一台做一些应用程序的事情,另一台做文件共享。使用 autocert 包,我如何才能配置证书管理器来生成我可以在两台服务器上使用的证书? 最佳答案
我一直依赖这个库有一段时间了,没有任何问题,但突然间它完全忽略了缓存的证书,尝试获取新证书,但它只是永远等待显然永远不会出现的 acme 挑战。据我所知,我的用法是完全正确的(这在过去几周内一直有效,
运行以下代码时出现错误: acme: authorization error for domain (where domain is replaced by my actual domain) 有没有
我尝试从 autocert 文档中运行此示例代码,并将其更改为使用我的域: package main import ( "fmt" "log" "net/http" "
完整的错误消息是: 403 urn:acme:error:unauthorized: Account creation on ACMEv1 isdisabled. Please upgrade you
我是一名优秀的程序员,十分优秀!