# HTTP/2 Go workshop

[https://rebrainme.com/webinars/golang-http-client-and-server/]()

### Usefull commands

```
docker run --name ngs -d -p 8080:80 nginx:1.19.6

sudo tcpdump -i lo port 8080

sudo tcpdump -i lo "port 8080 and tcp[tcpflags] & (tcp-syn|tcp-fin) != 0"

openssl req -x509 -newkey rsa:4096 -sha256 -days 3650 -nodes \
-keyout local.key -out local.crt -subj "/CN=localhost" \
-addext "subjectAltName=DNS:localhost,IP:127.0.0.1"
```
