Mikio Hara 237fc45c42 http2: gofmt -w -s 8 år sedan
..
.gitignore 17e723d022 http2: move github.com/bradfitz/http2 down into a new http2 directory 9 år sedan
Makefile 5627bad10b http2/h2demo: updates to text and Makefile to upload/deploy it 9 år sedan
README 17e723d022 http2: move github.com/bradfitz/http2 down into a new http2 directory 9 år sedan
h2demo.go 74d798388a http2/h2demo: update bug link, add idle conn timeouts 8 år sedan
launch.go 237fc45c42 http2: gofmt -w -s 8 år sedan
rootCA.key 17e723d022 http2: move github.com/bradfitz/http2 down into a new http2 directory 9 år sedan
rootCA.pem 17e723d022 http2: move github.com/bradfitz/http2 down into a new http2 directory 9 år sedan
rootCA.srl 17e723d022 http2: move github.com/bradfitz/http2 down into a new http2 directory 9 år sedan
server.crt 17e723d022 http2: move github.com/bradfitz/http2 down into a new http2 directory 9 år sedan
server.key 17e723d022 http2: move github.com/bradfitz/http2 down into a new http2 directory 9 år sedan

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