Safe Haskell | None |
---|---|
Language | Haskell2010 |
The Snap HTTP server is a high performance web server library written in
Haskell. Together with the snap-core
library upon which it depends, it
provides a clean and efficient Haskell programming interface to the HTTP
protocol.
- simpleHttpServe :: MonadSnap m => Config m a -> Snap () -> IO ()
- httpServe :: Config Snap a -> Snap () -> IO ()
- quickHttpServe :: Snap () -> IO ()
- snapServerVersion :: ByteString
- setUnicodeLocale :: String -> IO ()
- rawHttpServe :: ServerHandler s -> ServerConfig s -> [AcceptFunc] -> IO ()
- module Snap.Http.Server.Config
Documentation
simpleHttpServe :: MonadSnap m => Config m a -> Snap () -> IO () Source #
Starts serving HTTP requests using the given handler. This function never returns; to shut down the HTTP server, kill the controlling thread.
This function is like httpServe
except it doesn't setup compression,
reverse proxy address translation (via behindProxy
), or
the error handler; this allows it to be used from MonadSnap
.
httpServe :: Config Snap a -> Snap () -> IO () Source #
Starts serving HTTP requests using the given handler, with settings from
the Config
passed in. This function never returns; to shut down the HTTP
server, kill the controlling thread.
quickHttpServe :: Snap () -> IO () Source #
Starts serving HTTP using the given handler. The configuration is read
from the options given on the command-line, as returned by
commandLineConfig
. This function never returns; to shut down the HTTP
server, kill the controlling thread.
snapServerVersion :: ByteString Source #
A short string describing the Snap server version
setUnicodeLocale :: String -> IO () Source #
Given a string like "en_US", this sets the locale to "en_US.UTF-8". This doesn't work on Windows.
:: ServerHandler s | server handler |
-> ServerConfig s | server config |
-> [AcceptFunc] | listening server backends |
-> IO () |
module Snap.Http.Server.Config