diff options
Diffstat (limited to 'develop/print.html')
-rw-r--r-- | develop/print.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/develop/print.html b/develop/print.html index 650ab5787f..527868558a 100644 --- a/develop/print.html +++ b/develop/print.html @@ -917,12 +917,12 @@ reverse proxy is using.</p> <p><strong>NOTE</strong>: You only need one of these.</p> <h3 id="nginx"><a class="header" href="#nginx">nginx</a></h3> <pre><code class="language-nginx">server { - listen 443 ssl http2; - listen [::]:443 ssl http2; + listen 443 ssl; + listen [::]:443 ssl; # For the federation port - listen 8448 ssl http2 default_server; - listen [::]:8448 ssl http2 default_server; + listen 8448 ssl default_server; + listen [::]:8448 ssl default_server; server_name matrix.example.com; |