gin/gin1.7.go

38 lines
1.0 KiB
Go

// +build go1.7
package gin
import (
"crypto/tls"
"net/http"
"golang.org/x/crypto/acme/autocert"
)
// AutoTLSManager is a stateful certificate manager built on top of acme.Client.
var AutoTLSManager = autocert.Manager{
Prompt: autocert.AcceptTOS,
}
// RunAutoTLS attaches the router to a http.Server and starts listening and serving HTTPS (secure) requests.
// It obtains and refreshes certificates automatically,
// as well as providing them to a TLS server via tls.Config.
// only from Go version 1.7 onward
func (engine *Engine) RunAutoTLS(domain ...string) (err error) {
debugPrint("Listening and serving HTTPS on host name is %s\n", domain)
defer func() { debugPrintError(err) }()
// HostPolicy controls which domains the Manager will attempt
if len(domain) != 0 {
AutoTLSManager.HostPolicy = autocert.HostWhitelist(domain...)
}
s := &http.Server{
Addr: ":https",
TLSConfig: &tls.Config{GetCertificate: AutoTLSManager.GetCertificate},
Handler: engine,
}
err = s.ListenAndServeTLS("", "")
return
}