mirror of
https://github.com/1f349/orchid.git
synced 2024-11-09 23:02:53 +00:00
14 lines
324 B
Go
14 lines
324 B
Go
package renewal
|
|
|
|
type LetsEncryptConfig struct {
|
|
Account LetsEncryptAccount `yaml:"account"`
|
|
Directory string `yaml:"directory"`
|
|
Certificate string `yaml:"certificate"`
|
|
insecure bool
|
|
}
|
|
|
|
type LetsEncryptAccount struct {
|
|
Email string `yaml:"email"`
|
|
PrivateKey string `yaml:"key"`
|
|
}
|