aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2021-02-12 22:11:01 +0100
committerGuilhem Moulin <guilhem@fripost.org>2021-02-12 22:14:09 +0100
commit8c70ba081e9892217510b6b01f0402482161ef84 (patch)
treeb2d238aa98190833f7a5c4aa43cf2e7581823425
parent0f574f73182491fe793fcdfce6632372fab4d5c3 (diff)
Raise client timeout from 10 to 30s.
-rw-r--r--Changelog1
-rwxr-xr-xclient2
-rw-r--r--config/lacme.conf2
-rw-r--r--lacme.8.md2
4 files changed, 4 insertions, 3 deletions
diff --git a/Changelog b/Changelog
index 4168e58..edf1d95 100644
--- a/Changelog
+++ b/Changelog
@@ -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
diff --git a/client b/client
index bacd4d6..c5788dd 100755
--- a/client
+++ b/client
@@ -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.
#
diff --git a/lacme.8.md b/lacme.8.md
index 2ffdc25..3d46786 100644
--- a/lacme.8.md
+++ b/lacme.8.md
@@ -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*