docs/vendor/golang.org/x/net/http2/h2demo
Ying Li 51dc1747e4 Move the godeps workspace to the vendor directory to be compliant with Go 1.6
Signed-off-by: Ying Li <ying.li@docker.com>
2016-03-08 11:28:04 -08:00
..
.gitignore Move the godeps workspace to the vendor directory to be compliant with Go 1.6 2016-03-08 11:28:04 -08:00
Makefile Move the godeps workspace to the vendor directory to be compliant with Go 1.6 2016-03-08 11:28:04 -08:00
README Move the godeps workspace to the vendor directory to be compliant with Go 1.6 2016-03-08 11:28:04 -08:00
h2demo.go Move the godeps workspace to the vendor directory to be compliant with Go 1.6 2016-03-08 11:28:04 -08:00
launch.go Move the godeps workspace to the vendor directory to be compliant with Go 1.6 2016-03-08 11:28:04 -08:00
rootCA.key Move the godeps workspace to the vendor directory to be compliant with Go 1.6 2016-03-08 11:28:04 -08:00
rootCA.pem Move the godeps workspace to the vendor directory to be compliant with Go 1.6 2016-03-08 11:28:04 -08:00
rootCA.srl Move the godeps workspace to the vendor directory to be compliant with Go 1.6 2016-03-08 11:28:04 -08:00
server.crt Move the godeps workspace to the vendor directory to be compliant with Go 1.6 2016-03-08 11:28:04 -08:00
server.key Move the godeps workspace to the vendor directory to be compliant with Go 1.6 2016-03-08 11:28:04 -08: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