changed --with-ssl to --with-tls

This commit is contained in:
Jack Wines 2023-05-27 12:19:57 -07:00
parent bb8b26dedb
commit 47989ab012

View file

@ -92,5 +92,5 @@ main = do
opts <- S.getArgs opts <- S.getArgs
let application = serve api . hoistServer api (runWithEnv env) $ server let application = serve api . hoistServer api (runWithEnv env) $ server
case opts of case opts of
["--with-ssl"] -> WTLS.runTLS tlsSettings warpSettings application ["--with-tls"] -> WTLS.runTLS tlsSettings warpSettings application
_ -> W.run 8080 application _ -> W.run 8080 application