mirror of
https://github.com/InazumaV/Ratte.git
synced 2026-02-04 20:50:10 +00:00
12 lines
447 B
Go
12 lines
447 B
Go
package conf
|
|
|
|
type ACME struct {
|
|
Name string
|
|
Mode string `json:"CertMode"` // file, http, dns
|
|
RejectUnknownSni bool `json:"RejectUnknownSni"`
|
|
Provider string `json:"Provider"` // alidns, cloudflare, gandi, godaddy....
|
|
Email string `json:"Email"`
|
|
DNSEnv map[string]string `json:"DNSEnv"`
|
|
Storage string `json:"Storage"`
|
|
}
|