orchid/renewal/config.go

14 lines
324 B
Go
Raw Normal View History

2023-06-26 11:56:21 +01:00
package renewal
type LetsEncryptConfig struct {
2023-07-07 15:47:38 +01:00
Account LetsEncryptAccount `yaml:"account"`
Directory string `yaml:"directory"`
Certificate string `yaml:"certificate"`
2023-06-29 02:37:00 +01:00
insecure bool
2023-06-26 11:56:21 +01:00
}
2023-07-07 15:47:38 +01:00
type LetsEncryptAccount struct {
Email string `yaml:"email"`
PrivateKey string `yaml:"key"`
}