Skip to content

Commit 1a0db99

Browse files
committed
BUG/MINOR: acme: increase the default TTL to 1 minute
The current TTL of 30s is not supported by all DNS providers.
1 parent c80b4cd commit 1a0db99

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

acme/dns01.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import (
3030

3131
const (
3232
// TTL of the temporary DNS record used for DNS-01 validation.
33-
DefaultTTL = 30 * time.Second
33+
DefaultTTL = 60 * time.Second
3434
// Typical negative response TTL defined in the SOA.
3535
defaultDNSPropagationTimeout = 300 * time.Second
3636
)

0 commit comments

Comments
 (0)