Browse Source

Alter Apache Proxy Documentation Path

Remove trailing slash from the LocationMatch Regex ensuring it picks up `/wett`y and thus works in more contexts.
pull/284/head
Harrison Pace 4 years ago
committed by GitHub
parent
commit
a6a738f92f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      docs/apache.md

2
docs/apache.md

@ -19,7 +19,7 @@ RewriteCond %{REQUEST_URI} ^/wetty/socket.io [NC]
RewriteCond %{QUERY_STRING} transport=websocket [NC]
RewriteRule /wetty/socket.io/(.*) ws://localhost:3000/wetty/socket.io/$1 [P,L]
<LocationMatch ^/wetty/(.*)>
<LocationMatch ^/wetty(.*)>
DirectorySlash On
Require all granted
ProxyPassMatch http://127.0.0.1:3000

Loading…
Cancel
Save