rib-0.5.0.0: src/Rib/Server.hs
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE QuasiQuotes #-}
-- | Serve generated static files with HTTP
module Rib.Server
( serve,
)
where
import Network.Wai.Application.Static (defaultFileServerSettings, ssListing, ssLookupFile, staticApp)
import qualified Network.Wai.Handler.Warp as Warp
import WaiAppStatic.Types (StaticSettings)
-- | WAI Settings suited for serving statically generated websites.
staticSiteServerSettings :: FilePath -> StaticSettings
staticSiteServerSettings root =
settings
{ ssLookupFile = ssLookupFile settings,
ssListing = Nothing -- Disable directory listings
}
where
settings = defaultFileServerSettings root
-- | Run a HTTP server to serve a directory of static files
--
-- Allow URLs of the form @//foo//bar@ to serve @${path}//foo//bar.html@
serve ::
-- | Port number to bind to
Int ->
-- | Directory to serve.
FilePath ->
IO ()
serve port path = do
putStrLn $ "[Rib] Serving at http://localhost:" <> show port
Warp.run port $ staticApp $ staticSiteServerSettings path