From 71cefc7e9b2243c964f4fffd3c9f79ca7916670e Mon Sep 17 00:00:00 2001 From: Jacobite89 <52151591+Jacobite89@users.noreply.github.com> Date: Thu, 23 Jan 2020 09:58:40 +0100 Subject: [PATCH] Update Caddy example --- Proxy-examples.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Proxy-examples.md b/Proxy-examples.md index c8cc370..5735e45 100644 --- a/Proxy-examples.md +++ b/Proxy-examples.md @@ -28,8 +28,8 @@ Caddy can also automatically enable HTTPS in some circumstances, check the [docs } ``` -## Caddy v2 -Caddy v2 can also automatically enable HTTPS in some circumstances, check the [docs](https://caddyserver.com/docs/automatic-https). +## Caddy 2 +Caddy 2 can also automatically enable HTTPS in some circumstances, check the [docs](https://caddyserver.com/docs/automatic-https). ```nginx :443 { tls ${SSLCERTIFICATE} ${SSLKEY} @@ -42,7 +42,7 @@ Caddy v2 can also automatically enable HTTPS in some circumstances, check the [d reverse_proxy /notifications/hub :3012 # Proxy the Root directory to Rocket - reverse_proxy / :80 + reverse_proxy :80 } ```