mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-02-02 06:48:14 -05:00
13 lines
544 B
Go
13 lines
544 B
Go
package conf
|
|
|
|
type CertConfig struct {
|
|
CertMode string `yaml:"CertMode"` // none, file, http, dns
|
|
RejectUnknownSni bool `yaml:"RejectUnknownSni"`
|
|
CertDomain string `yaml:"CertDomain"`
|
|
CertFile string `yaml:"CertFile"`
|
|
KeyFile string `yaml:"KeyFile"`
|
|
Provider string `yaml:"Provider"` // alidns, cloudflare, gandi, godaddy....
|
|
Email string `yaml:"Email"`
|
|
DNSEnv map[string]string `yaml:"DNSEnv"`
|
|
}
|