acme-dns/vendor/golang.org/x/net/http2/h2demo
2018-08-10 16:51:32 +03:00
..
.gitignore Update dependencies and replace uuid library (#100) 2018-08-10 16:51:32 +03:00
deployment-prod.yaml Update dependencies and replace uuid library (#100) 2018-08-10 16:51:32 +03:00
Dockerfile Update dependencies and replace uuid library (#100) 2018-08-10 16:51:32 +03:00
Dockerfile.0 Update dependencies and replace uuid library (#100) 2018-08-10 16:51:32 +03:00
h2demo.go Update dependencies and replace uuid library (#100) 2018-08-10 16:51:32 +03:00
launch.go Get rid of Iris and use julienschmidt/httprouter instead (#20) 2017-11-14 23:54:29 +02:00
Makefile Update dependencies and replace uuid library (#100) 2018-08-10 16:51:32 +03:00
README Get rid of Iris and use julienschmidt/httprouter instead (#20) 2017-11-14 23:54:29 +02:00
rootCA.key Get rid of Iris and use julienschmidt/httprouter instead (#20) 2017-11-14 23:54:29 +02:00
rootCA.pem Get rid of Iris and use julienschmidt/httprouter instead (#20) 2017-11-14 23:54:29 +02:00
rootCA.srl Get rid of Iris and use julienschmidt/httprouter instead (#20) 2017-11-14 23:54:29 +02:00
server.crt Get rid of Iris and use julienschmidt/httprouter instead (#20) 2017-11-14 23:54:29 +02:00
server.key Get rid of Iris and use julienschmidt/httprouter instead (#20) 2017-11-14 23:54:29 +02:00
service.yaml Update dependencies and replace uuid library (#100) 2018-08-10 16:51:32 +03:00
tmpl.go Get rid of Iris and use julienschmidt/httprouter instead (#20) 2017-11-14 23:54:29 +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