warp-tls

HTTP over SSL/TLS support for Warp via the TLS package

http://github.com/yesodweb/wai

Version on this page:3.0.1.1@rev:1
LTS Haskell 22.18:3.4.5
Stackage Nightly 2024-04-22:3.4.5
Latest on Hackage:3.4.5

See all snapshots warp-tls appears in

MIT licensed by Michael Snoyman
Maintained by [email protected]
This version can be pinned in stack with:warp-tls-3.0.1.1@sha256:2d984fade290388448566b73099486df1abefc4b4a0d4c72d384195372089275,1329

Module documentation for 3.0.1.1

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