mirror of
https://github.com/typeable/wai.git
synced 2024-12-26 15:42:18 +03:00
.. | ||
Network/Wai/Handler | ||
certificate.pem | ||
ChangeLog.md | ||
graceful-pong.hs | ||
key.pem | ||
LICENSE | ||
pong.hs | ||
pong.txt | ||
README.md | ||
Setup.lhs | ||
warp-tls.cabal |
warp-tls
Serve WAI applications using the Warp webserver and the Haskell TLS library.
In order to generate a self-signed certificate for testing, try the following:
openssl genrsa -out key.pem 2048
openssl req -new -key key.pem -out certificate.csr
openssl x509 -req -in certificate.csr -signkey key.pem -out certificate.pem