mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-12-25 22:51:39 +00:00
minor, change default dns sleep time from 60 seconds to 120 seconds.
This commit is contained in:
parent
dcf9cb581d
commit
4a4dacb52c
6
acme.sh
6
acme.sh
@ -22,6 +22,8 @@ VTYPE_TLS2="tls-sni-02"
|
|||||||
|
|
||||||
MAX_RENEW=80
|
MAX_RENEW=80
|
||||||
|
|
||||||
|
DEFAULT_DNS_SLEEP=120
|
||||||
|
|
||||||
W_TLS="tls"
|
W_TLS="tls"
|
||||||
|
|
||||||
BEGIN_CSR="-----BEGIN CERTIFICATE REQUEST-----"
|
BEGIN_CSR="-----BEGIN CERTIFICATE REQUEST-----"
|
||||||
@ -1592,7 +1594,7 @@ issue() {
|
|||||||
|
|
||||||
if [ "$dnsadded" = '1' ] ; then
|
if [ "$dnsadded" = '1' ] ; then
|
||||||
if [ -z "$Le_DNSSleep" ] ; then
|
if [ -z "$Le_DNSSleep" ] ; then
|
||||||
Le_DNSSleep=60
|
Le_DNSSleep=$DEFAULT_DNS_SLEEP
|
||||||
else
|
else
|
||||||
_savedomainconf "Le_DNSSleep" "$Le_DNSSleep"
|
_savedomainconf "Le_DNSSleep" "$Le_DNSSleep"
|
||||||
fi
|
fi
|
||||||
@ -2479,7 +2481,7 @@ Parameters:
|
|||||||
--tls Use standalone tls mode.
|
--tls Use standalone tls mode.
|
||||||
--apache Use apache mode.
|
--apache Use apache mode.
|
||||||
--dns [dns_cf|dns_dp|dns_cx|/path/to/api/file] Use dns mode or dns api.
|
--dns [dns_cf|dns_dp|dns_cx|/path/to/api/file] Use dns mode or dns api.
|
||||||
--dnssleep [60] The time in seconds to wait for all the txt records to take effect in dns api mode. Default 60 seconds.
|
--dnssleep [$DEFAULT_DNS_SLEEP] The time in seconds to wait for all the txt records to take effect in dns api mode. Default $DEFAULT_DNS_SLEEP seconds.
|
||||||
|
|
||||||
--keylength, -k [2048] Specifies the domain key length: 2048, 3072, 4096, 8192 or ec-256, ec-384.
|
--keylength, -k [2048] Specifies the domain key length: 2048, 3072, 4096, 8192 or ec-256, ec-384.
|
||||||
--accountkeylength, -ak [2048] Specifies the account key length.
|
--accountkeylength, -ak [2048] Specifies the account key length.
|
||||||
|
Loading…
Reference in New Issue
Block a user