@hackage / warpZ-tls

HTTP over TLS support for Warp via the TLS package

Latest3.4.13

About

Metadata

  • Last updated , by TonyMorris
  • License MIT
  • Categories Web Development
  • Maintained by: michael@snoyman.com

  • Lottery factor: 1

Links

Installation

Readme

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