Jaana Burcu Dogan ffcf1bedda http2/h2demo: don't auto redirect the HTTP-only serverpush demo to HTTPS 7 vuotta sitten
..
.gitignore 17e723d022 http2: move github.com/bradfitz/http2 down into a new http2 directory 9 vuotta sitten
Makefile 5627bad10b http2/h2demo: updates to text and Makefile to upload/deploy it 9 vuotta sitten
README 17e723d022 http2: move github.com/bradfitz/http2 down into a new http2 directory 9 vuotta sitten
h2demo.go ffcf1bedda http2/h2demo: don't auto redirect the HTTP-only serverpush demo to HTTPS 7 vuotta sitten
launch.go 237fc45c42 http2: gofmt -w -s 8 vuotta sitten
rootCA.key 17e723d022 http2: move github.com/bradfitz/http2 down into a new http2 directory 9 vuotta sitten
rootCA.pem 17e723d022 http2: move github.com/bradfitz/http2 down into a new http2 directory 9 vuotta sitten
rootCA.srl 17e723d022 http2: move github.com/bradfitz/http2 down into a new http2 directory 9 vuotta sitten
server.crt 17e723d022 http2: move github.com/bradfitz/http2 down into a new http2 directory 9 vuotta sitten
server.key 17e723d022 http2: move github.com/bradfitz/http2 down into a new http2 directory 9 vuotta sitten
tmpl.go c4f37062e1 http2/h2demo: use HTTP host for HTTP-only link 7 vuotta sitten

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