File: README.md

package info (click to toggle)
haskell-warp-tls 3.2.4.3-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 88 kB
  • sloc: haskell: 336; makefile: 3
file content (9 lines) | stat: -rw-r--r-- 343 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
## 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