diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2021-02-12 22:11:01 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2021-02-12 22:14:09 +0100 |
commit | 8c70ba081e9892217510b6b01f0402482161ef84 (patch) | |
tree | b2d238aa98190833f7a5c4aa43cf2e7581823425 | |
parent | 0f574f73182491fe793fcdfce6632372fab4d5c3 (diff) |
Raise client timeout from 10 to 30s.
-rw-r--r-- | Changelog | 1 | ||||
-rwxr-xr-x | client | 2 | ||||
-rw-r--r-- | config/lacme.conf | 2 | ||||
-rw-r--r-- | lacme.8.md | 2 |
4 files changed, 4 insertions, 3 deletions
@@ -15,6 +15,7 @@ lacme (0.7.1) upstream; - documentation: emphasize default values in the config file, and move the most common options ('hash', 'keyUsage', 'CAfile', 'min-days') to the default section. + - Raise client timeout from 10 to 30s. -- Guilhem Moulin <guilhem@fripost.org> Wed, 09 Dec 2020 18:23:22 +0100 @@ -272,7 +272,7 @@ if ($COMMAND eq 'account') { # elsif ($COMMAND eq 'newOrder') { die unless @ARGV; - my $timeout = $CONFIG->{timeout} // 10; + my $timeout = $CONFIG->{timeout} // 30; my $csr = do { local $/ = undef; <STDIN> }; set_kid(); diff --git a/config/lacme.conf b/config/lacme.conf index cc8488d..e49bd39 100644 --- a/config/lacme.conf +++ b/config/lacme.conf @@ -42,7 +42,7 @@ # Timeout in seconds after which the client stops polling the ACME # server and considers the request failed. # -#timeout = 10 +#timeout = 30 # Whether to verify the server certificate chain. # @@ -196,7 +196,7 @@ of [ACME] commands and dialogues with the remote [ACME] server). : Timeout in seconds after which the client stops polling the [ACME] server and considers the request failed. - Default: `10`. + Default: `30`. *SSL_verify* |