From c2fbfe415ab4f0f3e278b0477370257b1265cbdf Mon Sep 17 00:00:00 2001 From: Hamada Habib <24924319+ihfbib@users.noreply.github.com> Date: Wed, 15 Jun 2022 11:32:31 +0200 Subject: [PATCH] Update acme.py Fix: nginx: [warn] "ssl_stapling" ignored, issuer certificate not found for certificate "/var/www/22222/cert/22222.crt" --- wo/core/acme.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wo/core/acme.py b/wo/core/acme.py index a20c475..6326740 100644 --- a/wo/core/acme.py +++ b/wo/core/acme.py @@ -276,4 +276,5 @@ class WOAcme: ssl_conf_file.write("ssl_certificate " "/var/www/22222/cert/22222.crt;\n" "ssl_certificate_key " - "/var/www/22222/cert/22222.key;\n") + "/var/www/22222/cert/22222.key;\n" + "ssl_stapling off;\n")