mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-15 14:32:30 +01:00
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>
This commit is contained in:
parent
4dc945ba30
commit
4bc7483518
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ Let's assume that we expect clients to connect to our server at
|
||||||
SSLEngine on
|
SSLEngine on
|
||||||
ServerName example.com;
|
ServerName example.com;
|
||||||
|
|
||||||
<Location />
|
<Location /_matrix>
|
||||||
ProxyPass http://127.0.0.1:8008/_matrix nocanon
|
ProxyPass http://127.0.0.1:8008/_matrix nocanon
|
||||||
ProxyPassReverse http://127.0.0.1:8008/_matrix
|
ProxyPassReverse http://127.0.0.1:8008/_matrix
|
||||||
</Location>
|
</Location>
|
||||||
|
|
Loading…
Reference in a new issue