我一直在为这个问题挠头太久——我的问题相当微不足道,但我自己真的弄不明白:如何在 Go 中通过 HTTPS 提供静态文件?到目前为止,我已经尝试过同时使用两者HTTP.ServeFile,但mux.Handle都没有取得特别的成功。func main() {mux := http.NewServeMux()mux.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) { w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains") http.ServeFile(w, req, "./static")})cfg := &tls.Config{ MinVersion: tls.VersionTLS12, CurvePreferences: []tls.CurveID{tls.CurveP521, tls.CurveP384, tls.CurveP256}, PreferServerCipherSuites: true, CipherSuites: []uint16{ tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, tls.TLS_RSA_WITH_AES_256_GCM_SHA384, tls.TLS_RSA_WITH_AES_256_CBC_SHA, },}srv := &http.Server{ Addr: ":8080", Handler: mux, TLSConfig: cfg, TLSNextProto: make(map[string]func(*http.Server, *tls.Conn, http.Handler), 0),}log.Fatal(srv.ListenAndServeTLS("./server.rsa.crt", "./server.rsa.key"))}任何帮助表示赞赏,谢谢!
1 回答
慕神8447489
TA贡献1780条经验 获得超1个赞
您需要使用http.ListenAndServeTLS来启动 HTTPS 服务器。
func main() {
// Set up the handler to serve a file
http.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) {
w.Header().Set("Content-Type", "text/plain; charset=utf-8")
http.ServeFile(w, req, "./text.txt")
})
log.Printf("About to listen on 8443. Go to https://127.0.0.1:8443/")
log.Fatal(http.ListenAndServeTLS(":8443", "cert.pem", "key.pem", nil))
}
并启动一个为目录提供服务的 HTTPS 服务器FileServer
...
log.Fatal(http.ListenAndServeTLS(":8443", "cert.pem", "key.pem", http.FileServer(http.Dir("./static"))))
您可以使用generate_cert.go
创建自签名证书进行测试。
- 1 回答
- 0 关注
- 106 浏览
添加回答
举报
0/150
提交
取消