warp-tls

HTTP over TLS support for Warp via the TLS package

http://github.com/yesodweb/wai

Version on this page:3.4.6
LTS Haskell 23.5:3.4.9
Stackage Nightly 2025-01-21:3.4.12
Latest on Hackage:3.4.12

See all snapshots warp-tls appears in

MIT licensed by Michael Snoyman
Maintained by michael@snoyman.com
This version can be pinned in stack with:warp-tls-3.4.6@sha256:d552d969c19be5f6a3f41d65f2c07d8ab55f80fc4b76c01184ea5a60b6653efc,1842

Module documentation for 3.4.6

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

Changes