@hackage warp-tls3.4.14
HTTP over TLS support for Warp via the TLS package
Categories
License
MIT
Maintainer
michael@snoyman.com
Links
Versions
Installation
Dependencies (10)
- base >=4.12 && <5
- bytestring >=0.9
- network >=2.2.1
- recv >=0.1.0 && <0.2.0
- stm >=2.3
- streaming-commons Show all…
Dependents (51)
@hackage/configuration-tools, @hackage/postgres-websockets, @hackage/warp-tls-uid, @hackage/mu-grpc-server, @hackage/mu-graphql, @hackage/marvin, Show all…
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