From dd28045299ced9e00abdcd67b0293a567acf1e3e Mon Sep 17 00:00:00 2001 From: Martin Lindhe Date: Sat, 4 Mar 2017 22:59:45 +0100 Subject: [PATCH] Created TLS authentication (markdown) --- TLS-authentication.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 TLS-authentication.md diff --git a/TLS-authentication.md b/TLS-authentication.md new file mode 100644 index 0000000..5bdd702 --- /dev/null +++ b/TLS-authentication.md @@ -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" +} +``` \ No newline at end of file