Skip to content

Commit

Permalink
Update reverse_proxy.md
Browse files Browse the repository at this point in the history
In issue matrix-org#11895, the redirect from /_matrix/client to the URL configured in web_client_location was moved to the root URL (/). This change requires local administrators to update their proxy setups to include the root URL, as the current recommendations only include proxies for /_matrix/ and /_synapse/client/. This is necessary for the new location of the redirect to be effective.

This issue was raised in matrix-org#14722 by @sumpfralle
  • Loading branch information
ankit-pn committed Dec 28, 2022
1 parent a52822d commit 62e4f4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/reverse_proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ server {
server_name matrix.example.com;
location ~ ^(/_matrix|/_synapse/client) {
location ~ ^(/_matrix|/_synapse/client|/$) {
# note: do not add a path (even a single /) after the port in `proxy_pass`,
# otherwise nginx will canonicalise the URI and cause signature verification
# errors.
Expand Down

0 comments on commit 62e4f4d

Please sign in to comment.