1
0
mirror of https://github.com/Luzifer/elastic_cron.git synced 2024-09-20 07:32:57 +00:00
elastic_cron/vendor/golang.org/x/net/http2/h2demo
Knut Ahlers da8edd41c2
Move to dep instead of godeps
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2017-09-13 13:13:34 +02:00
..
.gitignore Move to dep instead of godeps 2017-09-13 13:13:34 +02:00
h2demo.go Move to dep instead of godeps 2017-09-13 13:13:34 +02:00
launch.go Move to dep instead of godeps 2017-09-13 13:13:34 +02:00
Makefile Move to dep instead of godeps 2017-09-13 13:13:34 +02:00
README Move to dep instead of godeps 2017-09-13 13:13:34 +02:00
rootCA.key Move to dep instead of godeps 2017-09-13 13:13:34 +02:00
rootCA.pem Move to dep instead of godeps 2017-09-13 13:13:34 +02:00
rootCA.srl Move to dep instead of godeps 2017-09-13 13:13:34 +02:00
server.crt Move to dep instead of godeps 2017-09-13 13:13:34 +02:00
server.key Move to dep instead of godeps 2017-09-13 13:13:34 +02:00
tmpl.go Move to dep instead of godeps 2017-09-13 13:13:34 +02:00

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