wai/warp-tls
Michael Snoyman efe040c916 Merge branch 'no-conduit'
Conflicts:
	wai-extra/wai-extra.cabal
	wai-handler-launch/wai-handler-launch.cabal
	wai-test/wai-test.cabal
	wai-websockets/wai-websockets.cabal
	wai/wai.cabal
	warp-tls/warp-tls.cabal
	warp/Network/Wai/Handler/Warp/Response.hs
	warp/warp.cabal
2014-06-09 10:24:51 +03:00
..
Network/Wai/Handler Merge branch 'no-conduit' 2014-06-09 10:24:51 +03:00
certificate.pem warp-tls added 2012-01-10 16:15:57 +02: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 Added warp-tls README 2013-02-17 12:47:11 +02:00
Setup.lhs warp-tls added 2012-01-10 16:15:57 +02:00
warp-tls.cabal warp-tls updated 2014-05-22 12:09:02 +03:00

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