最新的Chrome / IE9 / Firefox都可以正常运行。IE8抱怨该页面无法显示,并且连接似乎已终止。快速测试代码在这里。
package main
import (
"time"
"fmt"
"net/http"
)
type Handler struct {
}
func (this *Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello, %q", r.URL.Path)
}
func main() {
handler := &Handler{}
ss := &http.Server{
Addr: ":443",
Handler: handler,
ReadTimeout: 10 * time.Second,
WriteTimeout: 10 * time.Second,
MaxHeaderBytes: 1 << 20,
}
ss.ListenAndServeTLS("cert.pem", "key.pem")
}
请注意,“ cert.pem”和“ key.pem”是由“ crypto / tls / generate_cert.go”生成的。我尝试了一个真实的证书,但是它也不起作用。
慕桂英4014372
相关分类