feat: Disable wildcard certificates
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
This commit is contained in:
parent
493758f56f
commit
e834da3727
@ -43,20 +43,22 @@ func unlockDomain(domain string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func buildDomainList(domain, pagesDomain string) []string {
|
func buildDomainList(domain, pagesDomain string) []string {
|
||||||
if domain == pagesDomain || strings.HasSuffix(domain, pagesDomain) {
|
// TODO: For wildcards, we MUST use DNS01
|
||||||
|
/*if domain == pagesDomain || strings.HasSuffix(domain, pagesDomain) {
|
||||||
return []string{
|
return []string{
|
||||||
pagesDomain,
|
pagesDomain,
|
||||||
"*." + pagesDomain,
|
"*." + pagesDomain,
|
||||||
}
|
}
|
||||||
}
|
}*/
|
||||||
|
|
||||||
return []string{domain}
|
return []string{domain}
|
||||||
}
|
}
|
||||||
|
|
||||||
func getDomainKey(domain, pagesDomain string) string {
|
func getDomainKey(domain, pagesDomain string) string {
|
||||||
if domain == pagesDomain || strings.HasSuffix(domain, pagesDomain) {
|
// TODO: For wildcards, we MUST use DNS01
|
||||||
|
/*if domain == pagesDomain || strings.HasSuffix(domain, pagesDomain) {
|
||||||
return "*." + pagesDomain
|
return "*." + pagesDomain
|
||||||
}
|
}*/
|
||||||
|
|
||||||
return domain
|
return domain
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user