diff options
author | DMRobertson <DMRobertson@users.noreply.github.com> | 2021-11-01 11:36:20 +0000 |
---|---|---|
committer | DMRobertson <DMRobertson@users.noreply.github.com> | 2021-11-01 11:36:20 +0000 |
commit | 6b78680875d9e721d46e4f3d34047c6a3fbd2f33 (patch) | |
tree | d64455b2305504485a55d2fec294620c72e6398d /develop/reverse_proxy.html | |
parent | deploy: e320f5dba32f5b5818b6d5a0059ae388430b9a72 (diff) | |
download | synapse-6b78680875d9e721d46e4f3d34047c6a3fbd2f33.tar.xz |
deploy: ece84f2c450d986e54acc80971225fb02f4e1d05
Diffstat (limited to 'develop/reverse_proxy.html')
-rw-r--r-- | develop/reverse_proxy.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/develop/reverse_proxy.html b/develop/reverse_proxy.html index d83219a722..e2f8fea6b9 100644 --- a/develop/reverse_proxy.html +++ b/develop/reverse_proxy.html @@ -222,7 +222,7 @@ to proxied traffic.)</p> <h2 id="reverse-proxy-configuration-examples"><a class="header" href="#reverse-proxy-configuration-examples">Reverse-proxy configuration examples</a></h2> <p><strong>NOTE</strong>: You only need one of these.</p> <h3 id="nginx"><a class="header" href="#nginx">nginx</a></h3> -<pre><code>server { +<pre><code class="language-nginx">server { listen 443 ssl http2; listen [::]:443 ssl http2; @@ -301,7 +301,7 @@ matrix.example.com { } </code></pre> <h3 id="apache"><a class="header" href="#apache">Apache</a></h3> -<pre><code><VirtualHost *:443> +<pre><code class="language-apache"><VirtualHost *:443> SSLEngine on ServerName matrix.example.com @@ -326,7 +326,7 @@ matrix.example.com { </code></pre> <p><strong>NOTE</strong>: ensure the <code>nocanon</code> options are included.</p> <p><strong>NOTE 2</strong>: It appears that Synapse is currently incompatible with the ModSecurity module for Apache (<code>mod_security2</code>). If you need it enabled for other services on your web server, you can disable it for Synapse's two VirtualHosts by including the following lines before each of the two <code></VirtualHost></code> above:</p> -<pre><code><IfModule security2_module> +<pre><code class="language-apache"><IfModule security2_module> SecRuleEngine off </IfModule> </code></pre> |