1
0
Fork 0

Add helloworld tests with gRPC

This commit is contained in:
SALLEYRON Julien 2017-08-06 11:55:42 +02:00 committed by Ludovic Fernandez
parent 8071f31721
commit 990ee89650
8 changed files with 370 additions and 0 deletions

View file

@ -0,0 +1,10 @@
# TLS certificate description
## local.crt / local.key
Generate with
```bash
go run $GOROOT/src/crypto/tls/generate_cert.go --rsa-bits 1024 --host 127.0.0.1,::1,localhost --ca --start-date "Jan 1 00:00:00 1970" --duration=1000000h
mv cert.pem local.cert
mv key.pem local.key
```