-
Hello, I'm trying to create a SAN certificate for domain.com and *.domain.com using the library. However the verification fails because lego starts both the verification for the *. and the main domain at the same time, which both get the same _acme-challenge.redacted-domain.com check host but different TXT values. Is this a bug or am I doing something wrong? I'm using a custom challenge provider because our DNS software is not supported yet. See the log:
BTW thank you for a great package, it helps me greatly simplify our operations management! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
hello, if your DNS provider doesn't support multiple TXT records for a domain, you need to set the // Sequential All DNS challenges for this provider will be resolved sequentially.
// Returns the interval between each iteration.
func (d *DNSProvider) Sequential() time.Duration {
return d.config.SequenceInterval
} |
Beta Was this translation helpful? Give feedback.
hello,
if your DNS provider doesn't support multiple TXT records for a domain, you need to set the
Sequential
method: