Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 06-Sep-2018 | - | ||||
.gitignore | H A D | 06-Sep-2018 | 82 | 7 | 6 | |
Dockerfile | H A D | 06-Sep-2018 | 306 | 12 | 8 | |
Dockerfile.0 | H A D | 06-Sep-2018 | 5.9 KiB | 135 | 116 | |
Makefile | H A D | 06-Sep-2018 | 1.9 KiB | 56 | 40 | |
README | H A D | 06-Sep-2018 | 541 | 17 | 11 | |
deployment-prod.yaml | H A D | 06-Sep-2018 | 716 | 29 | 28 | |
h2demo.go | H A D | 06-Sep-2018 | 16 KiB | 547 | 485 | |
launch.go | H A D | 06-Sep-2018 | 8.5 KiB | 303 | 266 | |
rootCA.key | H A D | 06-Sep-2018 | 1.6 KiB | 28 | 27 | |
rootCA.pem | H A D | 06-Sep-2018 | 1.5 KiB | 27 | 26 | |
rootCA.srl | H A D | 06-Sep-2018 | 17 | 2 | 1 | |
server.crt | H A D | 06-Sep-2018 | 1.2 KiB | 21 | 20 | |
server.key | H A D | 06-Sep-2018 | 1.6 KiB | 28 | 27 | |
service.yaml | H A D | 06-Sep-2018 | 291 | 18 | 17 | |
tmpl.go | H A D | 06-Sep-2018 | 66.7 KiB | 1,992 | 1,884 |
README
1 2Client: 3 -- Firefox nightly with about:config network.http.spdy.enabled.http2draft set true 4 -- Chrome: go to chrome://flags/#enable-spdy4, save and restart (button at bottom) 5 6Make CA: 7$ openssl genrsa -out rootCA.key 2048 8$ openssl req -x509 -new -nodes -key rootCA.key -days 1024 -out rootCA.pem 9... install that to Firefox 10 11Make cert: 12$ openssl genrsa -out server.key 2048 13$ openssl req -new -key server.key -out server.csr 14$ openssl x509 -req -in server.csr -CA rootCA.pem -CAkey rootCA.key -CAcreateserial -out server.crt -days 500 15 16 17