From ffb7dc4ec20aad128e5547a1e773894c3acc21c2 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Fri, 18 Feb 2022 00:17:07 +0100 Subject: [PATCH] fix: SSL off for services --- src/lib/haproxy/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/haproxy/index.ts b/src/lib/haproxy/index.ts index 6d12b9544..b98c938ed 100644 --- a/src/lib/haproxy/index.ts +++ b/src/lib/haproxy/index.ts @@ -577,6 +577,7 @@ export async function configureSimpleServiceProxyOff({ domain }) { .json(); await completeTransaction(transactionId); } catch (error) {} + await forceSSLOffApplication(domain); await removeWwwRedirection(domain); return; }