From 47989ab0126aa043c5cf255062928fb4c8aa8f8f Mon Sep 17 00:00:00 2001 From: Jack Wines Date: Sat, 27 May 2023 12:19:57 -0700 Subject: [PATCH] changed --with-ssl to --with-tls --- server/src/Main.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/Main.hs b/server/src/Main.hs index e1a35ec..6eef860 100644 --- a/server/src/Main.hs +++ b/server/src/Main.hs @@ -92,5 +92,5 @@ main = do opts <- S.getArgs let application = serve api . hoistServer api (runWithEnv env) $ server case opts of - ["--with-ssl"] -> WTLS.runTLS tlsSettings warpSettings application + ["--with-tls"] -> WTLS.runTLS tlsSettings warpSettings application _ -> W.run 8080 application