gin/gin1.7.go

38 lines
1.0 KiB
Go
Raw Normal View History

// +build go1.7
package gin
import (
"crypto/tls"
"net/http"
"golang.org/x/crypto/acme/autocert"
)
2017-04-03 15:42:21 +00:00
// AutoTLSManager is a stateful certificate manager built on top of acme.Client.
2017-04-03 15:30:46 +00:00
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
2017-04-03 15:30:46 +00:00
func (engine *Engine) RunAutoTLS(domain ...string) (err error) {
debugPrint("Listening and serving HTTPS on host name is %s\n", domain)
defer func() { debugPrintError(err) }()
2017-04-03 15:42:21 +00:00
// HostPolicy controls which domains the Manager will attempt
if len(domain) != 0 {
2017-04-03 15:30:46 +00:00
AutoTLSManager.HostPolicy = autocert.HostWhitelist(domain...)
}
s := &http.Server{
2017-04-04 06:19:44 +00:00
Addr: ":https",
2017-04-03 15:30:46 +00:00
TLSConfig: &tls.Config{GetCertificate: AutoTLSManager.GetCertificate},
Handler: engine,
}
err = s.ListenAndServeTLS("", "")
return
}