ingress-nginx-helm/vendor/golang.org/x/net/http2/h2demo
Manuel de Brito Fontes bf5616c65b Replace godep with dep
2017-10-06 17:26:14 -03:00
..
.gitignore Replace godep with dep 2017-10-06 17:26:14 -03:00
h2demo.go Replace godep with dep 2017-10-06 17:26:14 -03:00
launch.go Replace godep with dep 2017-10-06 17:26:14 -03:00
Makefile Replace godep with dep 2017-10-06 17:26:14 -03:00
README Replace godep with dep 2017-10-06 17:26:14 -03:00
rootCA.key Replace godep with dep 2017-10-06 17:26:14 -03:00
rootCA.pem Replace godep with dep 2017-10-06 17:26:14 -03:00
rootCA.srl Replace godep with dep 2017-10-06 17:26:14 -03:00
server.crt Replace godep with dep 2017-10-06 17:26:14 -03:00
server.key Replace godep with dep 2017-10-06 17:26:14 -03:00
tmpl.go Replace godep with dep 2017-10-06 17:26:14 -03:00

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