We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc9bf9d commit c2a79b2Copy full SHA for c2a79b2
va/va.go
@@ -367,11 +367,7 @@ func (va VAImpl) validateDNS01(task *vaTask) *core.ValidationRecord {
367
func (va VAImpl) validateDNSAccount01(task *vaTask) *core.ValidationRecord {
368
acctHash := sha256.Sum256([]byte(task.AccountURL))
369
acctLabel := strings.ToLower(base32.StdEncoding.EncodeToString(acctHash[0:10]))
370
- scope := "host"
371
- if task.Wildcard {
372
- scope = "wildcard"
373
- }
374
- challengeSubdomain := fmt.Sprintf("_%s._acme-%s-challenge.%s", acctLabel, scope, task.Identifier.Value)
+ challengeSubdomain := fmt.Sprintf("_%s._acme-challenge.%s", acctLabel, task.Identifier.Value)
375
376
result := &core.ValidationRecord{
377
URL: challengeSubdomain,
0 commit comments