summary refs log tree commit diff
path: root/docs
diff options
context:
space:
mode:
authorPaul Tötterman <ptman@users.noreply.github.com>2019-02-26 20:01:45 +0200
committerRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2019-02-26 18:01:45 +0000
commit4bc74835185a42fae0004c30e55f61f5bb8c78d2 (patch)
treee3f1b1811e5ce2f9b2c24e1b20f4846da3e3d477 /docs
parentMerge pull request #4746 from matrix-org/anoa/public_rooms_federate_develop (diff)
downloadsynapse-4bc74835185a42fae0004c30e55f61f5bb8c78d2.tar.xz
Fix apache reverse proxy example (#4742)
So that it actually works. See https://httpd.apache.org/docs/2.4/mod/mod_proxy.html#proxypass

Signed-off-by: Paul Tötterman <paul.totterman@iki.fi>
Diffstat (limited to 'docs')
-rw-r--r--docs/reverse_proxy.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/reverse_proxy.rst b/docs/reverse_proxy.rst
index 242935a62f..4706061eba 100644
--- a/docs/reverse_proxy.rst
+++ b/docs/reverse_proxy.rst
@@ -79,7 +79,7 @@ Let's assume that we expect clients to connect to our server at
           SSLEngine on
           ServerName example.com;
 
-          <Location />
+          <Location /_matrix>
               ProxyPass http://127.0.0.1:8008/_matrix nocanon
               ProxyPassReverse http://127.0.0.1:8008/_matrix
           </Location>