Created TLS authentication (markdown)

Martin Lindhe
2017-03-04 22:59:45 +01:00
parent 0285a53385
commit dd28045299

15
TLS-authentication.md Normal file

@@ -0,0 +1,15 @@
# Example reverse proxy configuration using [Caddy Server](https://caddyserver.com/)
```
localhost:8080
gzip
browse
ext .html
log access.log
proxy /metrics localhost:9182
tls "c:/client/cert.pem" "c:/client/cert-key.pem" {
clients "C:/client/intermediate_masters_ca.pem"
}
```