From dfd9a213639725856fecf37ff618b3f06e16bebc Mon Sep 17 00:00:00 2001 From: Felix E Date: Sun, 9 Jul 2023 17:51:32 +0200 Subject: [PATCH] Update caddy examples for websockets over port 80 (v1.29.0) --- Using-Docker-Compose.md | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/Using-Docker-Compose.md b/Using-Docker-Compose.md index 4d28608..ec0f83c 100644 --- a/Using-Docker-Compose.md +++ b/Using-Docker-Compose.md @@ -58,10 +58,7 @@ In the same directory, create the `Caddyfile` below. (This file does not need to # if you encounter issues. encode gzip - # Notifications redirected to the WebSocket server - reverse_proxy /notifications/hub vaultwarden:3012 - - # Proxy everything else to Rocket + # Proxy everything Rocket reverse_proxy vaultwarden:80 { # Send the true remote IP to Rocket, so that vaultwarden can put this in the # log, so that fail2ban can ban the correct IP. @@ -145,10 +142,7 @@ In the same directory, create the `Caddyfile` below. (This file does not need to # if you encounter issues. encode gzip - # Notifications redirected to the WebSocket server - reverse_proxy /notifications/hub vaultwarden:3012 - - # Proxy everything else to Rocket + # Proxy everything to Rocket reverse_proxy vaultwarden:80 } ```