docs: update

This commit is contained in:
Bo-Yi Wu 2017-04-03 23:42:21 +08:00
parent 6b0ae2a64a
commit fb502ca58b
1 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@ import (
"golang.org/x/crypto/acme/autocert" "golang.org/x/crypto/acme/autocert"
) )
// AutoTLSManager is a stateful certificate manager built on top of acme.Client.
var AutoTLSManager = autocert.Manager{ var AutoTLSManager = autocert.Manager{
Prompt: autocert.AcceptTOS, Prompt: autocert.AcceptTOS,
} }
@ -21,7 +22,7 @@ func (engine *Engine) RunAutoTLS(domain ...string) (err error) {
debugPrint("Listening and serving HTTPS on host name is %s\n", domain) debugPrint("Listening and serving HTTPS on host name is %s\n", domain)
defer func() { debugPrintError(err) }() defer func() { debugPrintError(err) }()
//your domain here // HostPolicy controls which domains the Manager will attempt
if len(domain) != 0 { if len(domain) != 0 {
AutoTLSManager.HostPolicy = autocert.HostWhitelist(domain...) AutoTLSManager.HostPolicy = autocert.HostWhitelist(domain...)
} }