orchid/renewal/config.go

12 lines
262 B
Go
Raw Normal View History

2023-06-26 11:56:21 +01:00
package renewal
type LetsEncryptConfig struct {
Account struct {
Email string `yaml:"email"`
PrivateKey string `yaml:"privateKey"`
} `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
}