Documentation
¶
Overview ¶
Package acme uses https://github.com/dkumor/acmewrapper to automatically provision TLS certificates.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct {
// Server is the ACME server to use
Server string
// Email is the account owner's email
Email string
// TOS is an array containing the URLs for accepted Terms of Service
TOS []string
// DataPath is the path where files (registration, registration private key,
// cert, and cert key) should be stored.
//
// All files are stored under <DataPath>/autocert.
DataPath string
// Domains are the domains for which should be added to provisioned
// certificates. The certificate and private key files contain
// a hash of this collection so that new certificates are provisioned
// if the list of domains changes.
Domains []string
}
Config contains the variables required for AcmeWrapper
Click to show internal directories.
Click to hide internal directories.