diff options
author | Francis Lavoie <lavofr@gmail.com> | 2022-04-22 18:09:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-22 16:09:11 -0600 |
commit | 77a77c0219d389717ba3b8f8e28bad3462fab655 (patch) | |
tree | 75f13fbe5bf044962396449989a02d3451b4b1c3 /caddytest/integration/caddyfile_adapt | |
parent | db62942d634a22cee5e598a3062bc1405895a0c2 (diff) |
caddytls: Add `propagation_delay`, support `propagation_timeout -1` (#4723)
Diffstat (limited to 'caddytest/integration/caddyfile_adapt')
-rw-r--r-- | caddytest/integration/caddyfile_adapt/tls_propagation_timeout.txt | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/caddytest/integration/caddyfile_adapt/tls_propagation_timeout.txt b/caddytest/integration/caddyfile_adapt/tls_propagation_timeout.txt index 5d2b643..032f928 100644 --- a/caddytest/integration/caddyfile_adapt/tls_propagation_timeout.txt +++ b/caddytest/integration/caddyfile_adapt/tls_propagation_timeout.txt @@ -3,7 +3,12 @@ localhost respond "hello from localhost" tls { issuer acme { - propagation_timeout "10m0s" + propagation_delay 5m10s + propagation_timeout 10m20s + } + issuer zerossl { + propagation_delay 5m30s + propagation_timeout -1 } } ---------- @@ -56,10 +61,20 @@ tls { { "challenges": { "dns": { - "propagation_timeout": 600000000000 + "propagation_delay": 310000000000, + "propagation_timeout": 620000000000 } }, "module": "acme" + }, + { + "challenges": { + "dns": { + "propagation_delay": 330000000000, + "propagation_timeout": -1 + } + }, + "module": "zerossl" } ] } |