如何通过 HTTPS 提供静态文件
How to serve static files over HTTPS
我已经为这个问题挠头太久了 - 我的问题相当微不足道,但我自己真的弄不明白:如何在 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"))
}
感谢任何帮助,谢谢!
您需要使用 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
创建用于测试的自签名证书。
我已经为这个问题挠头太久了 - 我的问题相当微不足道,但我自己真的弄不明白:如何在 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"))
}
感谢任何帮助,谢谢!
您需要使用 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
创建用于测试的自签名证书。