mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
update ngnix reverse-proxy example (#11680)
this should not be a case-insensitive match.
This commit is contained in:
parent
b38bdae3a2
commit
79f6d3550a
1
changelog.d/11680.doc
Normal file
1
changelog.d/11680.doc
Normal file
@ -0,0 +1 @@
|
||||
Correct the documentation for `nginx` to use a case-sensitive url pattern. Fixes an error introduced in v1.21.0.
|
@ -63,7 +63,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.
|
||||
|
Loading…
Reference in New Issue
Block a user