From 15769443af72f93334668ab3b2a2151feffb7614 Mon Sep 17 00:00:00 2001 From: Eric <2759140+EricMeallier@users.noreply.github.com> Date: Thu, 24 Oct 2024 16:37:09 +0200 Subject: [PATCH] fix #183 typo in Readme for nginx reverse configuration Signed-off-by: Eric <2759140+EricMeallier@users.noreply.github.com> --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2d14920..b3222e3 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ docker build -t nextcloud-whiteboard-server -f Dockerfile . #### Apache ``` -ProxyPass /whiteboard http://localhost:3002 +ProxyPass /whiteboard http://localhost:3002/ RewriteEngine on RewriteCond %{HTTP:Upgrade} websocket [NC] RewriteCond %{HTTP:Connection} upgrade [NC] @@ -101,7 +101,7 @@ location /whiteboard/ { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $host; - proxy_pass http://localhost:3002; + proxy_pass http://localhost:3002/; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade;