1 回答
TA贡献1842条经验 获得超12个赞
我可以想到发生这种情况的两个原因
您的服务器应用程序无权访问端口 443
您的浏览器正在尝试通过端口 80 访问您的服务器
由于标记的标签无法解决第一个问题,因此此答案将涵盖第二种情况。
出现此问题是因为默认情况下,当您键入 www.domain.com 之类的地址时,您的浏览器会尝试使用端口 80 上的 http 协议联系 url 域,并且Golang ListenAndServeTLS 在不使用 https 时返回数据是一种已知行为浏览器
现在,如果您在浏览器中键入具有正确方案的完整 URL,例如https://www.domain.com浏览器将通过端口 443 接近服务器并启动与服务器的 TLS 握手,从而呈现正确的数据。
现在,您知道这一点,但您的用户不知道。每次尝试仅使用您的域作为 URL 访问您的 Web 应用程序时,如果您的用户收到 SSL 握手错误的通知,这将是非常令人沮丧的。
为了避免这个问题,您可以使用端口:80(或 8080)上的服务器启动 go 例程,使用以下简单代码将所有请求重定向到端口 443:
// redir is a net.Http handler which redirects incoming requests to the
// proper scheme, in this case being https
func redir(w http.ResponseWriter, req *http.Request) {
hostParts := strings.Split(req.Host, ":")
http.Redirect(w, req, "https://"+hostParts[0]+req.RequestURI, http.StatusMovedPermanently)
}
func main() {
// this go subroutine creates a server on :8080 and uses the redir handler
go func() {
err := http.ListenAndServe(":8080", http.HandlerFunc(redir))
if err != nil {
panic("Error: " + err.Error())
}
}()
http.ListenAndServeTLS(":"+Config.String("port"), Config.Key("https").String("cert"), Config.Key("https").String("key"), router)
}
我希望它对干杯有帮助,
- 1 回答
- 0 关注
- 160 浏览
添加回答
举报