dns/vendor/golang.org/x/net/http2/h2demo
Miek Gieben 4c681ac41f
dep ensure -update (#697)
* Some deletes

* some adds
2018-06-07 19:14:42 +01:00
..
.gitignore dep ensure -update (#697) 2018-06-07 19:14:42 +01:00
Dockerfile Update vendor libs (#690 and #655) (#694) 2018-06-06 18:35:07 +01:00
Dockerfile.0 Update vendor libs (#690 and #655) (#694) 2018-06-06 18:35:07 +01:00
Makefile Update vendor libs (#690 and #655) (#694) 2018-06-06 18:35:07 +01:00
README Use and vendor golang.org/x/net/ipv4 and golang.org/x/net/ipv6 (#594) 2017-12-04 09:59:24 +00:00
deployment-prod.yaml Update vendor libs (#690 and #655) (#694) 2018-06-06 18:35:07 +01:00
h2demo.go Update vendor libs (#690 and #655) (#694) 2018-06-06 18:35:07 +01:00
launch.go dep ensure -update (#697) 2018-06-07 19:14:42 +01:00
rootCA.key Use and vendor golang.org/x/net/ipv4 and golang.org/x/net/ipv6 (#594) 2017-12-04 09:59:24 +00:00
rootCA.pem Use and vendor golang.org/x/net/ipv4 and golang.org/x/net/ipv6 (#594) 2017-12-04 09:59:24 +00:00
rootCA.srl Use and vendor golang.org/x/net/ipv4 and golang.org/x/net/ipv6 (#594) 2017-12-04 09:59:24 +00:00
server.crt Use and vendor golang.org/x/net/ipv4 and golang.org/x/net/ipv6 (#594) 2017-12-04 09:59:24 +00:00
server.key Use and vendor golang.org/x/net/ipv4 and golang.org/x/net/ipv6 (#594) 2017-12-04 09:59:24 +00:00
service.yaml Update vendor libs (#690 and #655) (#694) 2018-06-06 18:35:07 +01:00
tmpl.go Use and vendor golang.org/x/net/ipv4 and golang.org/x/net/ipv6 (#594) 2017-12-04 09:59:24 +00:00

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