wai/warp-tls
2016-06-22 14:53:38 +09:00
..
Network/Wai/Handler refactoring. 2016-06-22 14:48:15 +09:00
certificate.pem warp-tls added 2012-01-10 16:15:57 +02:00
ChangeLog.md changelog for warp-tls. 2016-06-22 14:52:31 +09:00
graceful-pong.hs runTLSSocket 2012-10-10 19:57:03 +09:00
key.pem warp-tls added 2012-01-10 16:15:57 +02:00
LICENSE Update license with MIT license 2012-05-20 19:53:58 -07:00
pong.hs warp-tls updated 2014-05-22 12:09:02 +03:00
pong.txt warp-tls updated 2014-05-22 12:09:02 +03:00
README.md Doc link updates 2014-12-21 11:27:53 +02:00
Setup.lhs warp-tls added 2012-01-10 16:15:57 +02:00
warp-tls.cabal warp-tls: ver bumps up 2016-06-22 14:53:38 +09:00

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