Skip to content

Commit

Permalink
Merge pull request #242 from EricMeallier/EricMeallier-patch-1-TypoRe…
Browse files Browse the repository at this point in the history
…adme

fix #183 typo in Readme for nginx reverse configuration
  • Loading branch information
juliusknorr authored Oct 28, 2024
2 parents 83ea9f6 + 1576944 commit bb9014a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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;
Expand Down

0 comments on commit bb9014a

Please sign in to comment.