scotty-tls-0.3.0.0: TLS for Scotty

Safe HaskellNone

Web.Scotty.TLS

Contents

Synopsis

A method for running Scotty over TLS

scottyTLS :: Port -> FilePath -> FilePath -> ScottyM () -> IO ()Source

Run a Scotty application over TLS

Transformer version

scottyTTLS :: (Monad m, MonadIO n) => Port -> FilePath -> FilePath -> (forall a. m a -> n a) -> (m Response -> IO Response) -> ScottyT t m () -> n ()Source