Initial commit

This commit is contained in:
Yuzuki616
2024-09-12 06:04:32 +09:00
commit 3f58fa7f0d
31 changed files with 2814 additions and 0 deletions

11
conf/acme.go Normal file
View File

@@ -0,0 +1,11 @@
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"`
}