identicond/vendor/golang.org/x/net/http2/h2demo
Cadey Ratio 221c2ebe49 initial commit, everything works 2017-12-29 17:10:53 -05:00
..
.gitignore initial commit, everything works 2017-12-29 17:10:53 -05:00
Makefile initial commit, everything works 2017-12-29 17:10:53 -05:00
README initial commit, everything works 2017-12-29 17:10:53 -05:00
h2demo.go initial commit, everything works 2017-12-29 17:10:53 -05:00
launch.go initial commit, everything works 2017-12-29 17:10:53 -05:00
rootCA.key initial commit, everything works 2017-12-29 17:10:53 -05:00
rootCA.pem initial commit, everything works 2017-12-29 17:10:53 -05:00
rootCA.srl initial commit, everything works 2017-12-29 17:10:53 -05:00
server.crt initial commit, everything works 2017-12-29 17:10:53 -05:00
server.key initial commit, everything works 2017-12-29 17:10:53 -05:00
tmpl.go initial commit, everything works 2017-12-29 17:10:53 -05:00

README

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