mirror of
https://github.com/typeable/wai.git
synced 2025-01-08 15:37:19 +03:00
efe040c916
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 |
||
---|---|---|
.. | ||
Network/Wai/Handler | ||
certificate.pem | ||
graceful-pong.hs | ||
key.pem | ||
LICENSE | ||
pong.hs | ||
pong.txt | ||
README.md | ||
Setup.lhs | ||
warp-tls.cabal |
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