diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2020-02-14 10:52:05 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2020-02-14 10:52:05 +0000 |
commit | ef1e41803463a25bc99a3a587bc24a5c37ed9e37 (patch) | |
tree | 8cde49fb3d45f2ef1f562316db09e7302b9d5cf1 /docs | |
parent | Merge pull request #5552 from matrix-org/rav/github_templates (diff) | |
parent | Merge pull request #5313 from twrist/patch-1 (diff) | |
download | synapse-ef1e41803463a25bc99a3a587bc24a5c37ed9e37.tar.xz |
Merge pull request #5313 from twrist/patch-1
Diffstat (limited to 'docs')
-rw-r--r-- | docs/reverse_proxy.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/reverse_proxy.rst b/docs/reverse_proxy.rst index 7619b1097b..e4b870411c 100644 --- a/docs/reverse_proxy.rst +++ b/docs/reverse_proxy.rst @@ -89,8 +89,10 @@ Let's assume that we expect clients to connect to our server at bind :::443 v4v6 ssl crt /etc/ssl/haproxy/ strict-sni alpn h2,http/1.1 # Matrix client traffic - acl matrix hdr(host) -i matrix.example.com - use_backend matrix if matrix + acl matrix-host hdr(host) -i matrix.example.com + acl matrix-path path_beg /_matrix + + use_backend matrix if matrix-host matrix-path frontend matrix-federation bind :::8448 v4v6 ssl crt /etc/ssl/haproxy/synapse.pem alpn h2,http/1.1 |