Set the default dns-delay to 30s so it can be more efficient with fast
DNS providers. The dns-timeout is set to 600s by default so this does
not have a big impact, it will only do more check and allow the
challenge to be started more quickly.
dns-delay <time>
When "challenge-ready" includes "dns", configure the delay before the first
DNS resolution attempt and between retries. The value is a time expressed in
- HAProxy time format (e.g. "5m", "300s"). Default is 300 seconds.
+ HAProxy time format (e.g. "5m", "300s"). Default is 30 seconds.
Note that the resolution goes through the configured "default" resolvers
section, not the authoritative name servers. Results may therefore still be
ret->linenum = 0;
ret->challenge = strdup("http-01"); /* default value */
- ret->dns_delay = 300; /* default DNS re-trigger delay in seconds */
+ ret->dns_delay = 30; /* default DNS re-trigger delay in seconds */
ret->dns_timeout = 600; /* default DNS retry timeout */
/* The default generated keys are EC-384 */