summaryrefslogtreecommitdiff
path: root/test/modules/md/md_conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/modules/md/md_conf.py')
-rwxr-xr-xtest/modules/md/md_conf.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/modules/md/md_conf.py b/test/modules/md/md_conf.py
index 0b4502a7ac..19d4977f00 100755
--- a/test/modules/md/md_conf.py
+++ b/test/modules/md/md_conf.py
@@ -13,7 +13,9 @@ class MDConf(HttpdConf):
admin = f"admin@{env.http_tld}"
if len(admin.strip()):
self.add_admin(admin)
-
+ self.add([
+ "MDRetryDelay 1s", # speed up testing a little
+ ])
if local_ca:
self.add([
f"MDCertificateAuthority {env.acme_url}",
@@ -23,7 +25,7 @@ class MDConf(HttpdConf):
])
if std_ports:
self.add(f"MDPortMap 80:{env.http_port} 443:{env.https_port}")
- if env.ssl_module == "tls":
+ if env.ssl_module == "mod_tls":
self.add(f"TLSListen {env.https_port}")
self.add([
"<Location /server-status>",