commit
1cea2f5bba
@ -45,8 +45,8 @@ type Options struct {
|
|||||||
Cache interface{}
|
Cache interface{}
|
||||||
}
|
}
|
||||||
|
|
||||||
// AcceptTLS indicates whether you accept your CA's terms of service
|
// AcceptToS indicates whether you accept your CA's terms of service
|
||||||
func AcceptTLS(b bool) Option {
|
func AcceptToS(b bool) Option {
|
||||||
return func(o *Options) {
|
return func(o *Options) {
|
||||||
o.AcceptToS = b
|
o.AcceptToS = b
|
||||||
}
|
}
|
||||||
@ -78,7 +78,7 @@ func OnDemand(b bool) Option {
|
|||||||
// Default uses the Let's Encrypt Production CA, with DNS Challenge disabled.
|
// Default uses the Let's Encrypt Production CA, with DNS Challenge disabled.
|
||||||
func Default() []Option {
|
func Default() []Option {
|
||||||
return []Option{
|
return []Option{
|
||||||
AcceptTLS(true),
|
AcceptToS(true),
|
||||||
CA(LetsEncryptProductionCA),
|
CA(LetsEncryptProductionCA),
|
||||||
OnDemand(true),
|
OnDemand(true),
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user