mirror of
https://github.com/1f349/orchid.git
synced 2024-12-22 08:04:10 +00:00
17 lines
439 B
Go
17 lines
439 B
Go
package main
|
|
|
|
import "github.com/1f349/orchid/renewal"
|
|
|
|
type startUpConfig struct {
|
|
Listen string `yaml:"listen"`
|
|
Acme acmeConfig `yaml:"acme"`
|
|
LE renewal.LetsEncryptConfig `yaml:"letsEncrypt"`
|
|
Domains []string `yaml:"domains"`
|
|
}
|
|
|
|
type acmeConfig struct {
|
|
PresentUrl string `yaml:"presentUrl"`
|
|
CleanUpUrl string `yaml:"cleanUpUrl"`
|
|
RefreshUrl string `yaml:"refreshUrl"`
|
|
}
|