From aa785c47901878a6fbb9f83c7bb21734c83bcdb0 Mon Sep 17 00:00:00 2001 From: Dennis Frieberg Date: Thu, 15 Oct 2020 05:41:36 +0200 Subject: [PATCH] changed https default config --- app/Backend/Https.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Backend/Https.hs b/app/Backend/Https.hs index 4832649..77a2786 100644 --- a/app/Backend/Https.hs +++ b/app/Backend/Https.hs @@ -24,7 +24,7 @@ tlsDefaultSetting :: TLSConfiguration tlsDefaultSetting = TLSConfiguration "certificate.pem" [] "key.pem" httpsDefaultSetting :: HttpsConfiguration -httpsDefaultSetting = (httpDefaultSetting, tlsDefaultSetting) +httpsDefaultSetting = (HttpConfiguration "https" 443 "*", tlsDefaultSetting) httpsDefaultSettings :: [HttpsConfiguration] httpsDefaultSettings = [httpsDefaultSetting]