From 9ac56835e7920944f592cf2b01b93ab0c55e4285 Mon Sep 17 00:00:00 2001 From: usmannasir Date: Sun, 21 Jan 2024 11:47:35 +0500 Subject: [PATCH] bug fix https://app.clickup.com/t/86eng46e7 --- plogical/sslUtilities.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plogical/sslUtilities.py b/plogical/sslUtilities.py index 0fef5cd63..38b30a4d1 100755 --- a/plogical/sslUtilities.py +++ b/plogical/sslUtilities.py @@ -424,8 +424,8 @@ context /.well-known/acme-challenge { command = f'mkdir -p /usr/local/lsws/Example/html/.well-known/acme-challenge' ProcessUtilities.normalExecutioner(command) - command = f'chmod -R 755 /usr/local/lsws/Example/html' - ProcessUtilities.executioner(command) + command = f'chmod -R 755 /usr/local/lsws/Example/html' + ProcessUtilities.executioner(command) CustomVerificationFile = f'/usr/local/lsws/Example/html/.well-known/acme-challenge/{virtualHostName}' command = f'touch {CustomVerificationFile}'