Skip to content

Files

Latest commit

237fc45 · Mar 9, 2016

History

History
This branch is 4 commits ahead of, 1230 commits behind master.

h2demo

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Sep 24, 2015
Nov 20, 2015
Sep 24, 2015
Feb 3, 2016
Mar 9, 2016
Sep 24, 2015
Sep 24, 2015
Sep 24, 2015
Sep 24, 2015
Sep 24, 2015
Client:
 -- Firefox nightly with about:config network.http.spdy.enabled.http2draft set true
 -- Chrome: go to chrome://flags/#enable-spdy4, save and restart (button at bottom)

Make CA:
$ openssl genrsa -out rootCA.key 2048
$ openssl req -x509 -new -nodes -key rootCA.key -days 1024 -out rootCA.pem
... install that to Firefox

Make cert:
$ openssl genrsa -out server.key 2048
$ openssl req -new -key server.key -out server.csr
$ openssl x509 -req -in server.csr -CA rootCA.pem -CAkey rootCA.key -CAcreateserial -out server.crt -days 500