Brad Fitzpatrick b625564546 h2demo: update launch.go to use golang.org/x/oauth2 11 lat temu
..
.gitignore 107292a161 Fixes to demo site. 11 lat temu
Makefile 12475b82fe h2demo: add build tag 11 lat temu
README 7197fa6d9c Add the demo server back, slightly cleaned up. 11 lat temu
h2demo.go 19f280c032 Update Download Link 11 lat temu
launch.go b625564546 h2demo: update launch.go to use golang.org/x/oauth2 11 lat temu
rootCA.key 7197fa6d9c Add the demo server back, slightly cleaned up. 11 lat temu
rootCA.pem 7197fa6d9c Add the demo server back, slightly cleaned up. 11 lat temu
rootCA.srl 7197fa6d9c Add the demo server back, slightly cleaned up. 11 lat temu
server.crt 7197fa6d9c Add the demo server back, slightly cleaned up. 11 lat temu
server.key 7197fa6d9c Add the demo server back, slightly cleaned up. 11 lat temu

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