Tom Denham fbf578f0df vendor: Revendor with more sensible pinnings 8 anos atrás
..
.gitignore 5a2db92663 Add glide.lock and update GCE dependencies 8 anos atrás
Makefile 5a2db92663 Add glide.lock and update GCE dependencies 8 anos atrás
README 5a2db92663 Add glide.lock and update GCE dependencies 8 anos atrás
h2demo.go fbf578f0df vendor: Revendor with more sensible pinnings 8 anos atrás
launch.go fbf578f0df vendor: Revendor with more sensible pinnings 8 anos atrás
rootCA.key 5a2db92663 Add glide.lock and update GCE dependencies 8 anos atrás
rootCA.pem 5a2db92663 Add glide.lock and update GCE dependencies 8 anos atrás
rootCA.srl 5a2db92663 Add glide.lock and update GCE dependencies 8 anos atrás
server.crt 5a2db92663 Add glide.lock and update GCE dependencies 8 anos atrás
server.key 5a2db92663 Add glide.lock and update GCE dependencies 8 anos atrás

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