Skip to content
Snippets Groups Projects
Unverified Commit 8459ac9b authored by Arnold's avatar Arnold Committed by GitHub
Browse files

listen http2 deprecated nginx (updating documentation) (#16831)

More info [here](https://www.nginx.com/blog/nginx-plus-r30-released/).

Nginx threw error's at me when I used all the options of the doc
parent a68b48a5
No related branches found
No related tags found
No related merge requests found
NGINX listen http2 deprecation in documentation template for reverse proxy.
...@@ -58,12 +58,12 @@ reverse proxy is using. ...@@ -58,12 +58,12 @@ reverse proxy is using.
```nginx ```nginx
server { server {
listen 443 ssl http2; listen 443 ssl;
listen [::]:443 ssl http2; listen [::]:443 ssl;
# For the federation port # For the federation port
listen 8448 ssl http2 default_server; listen 8448 ssl default_server;
listen [::]:8448 ssl http2 default_server; listen [::]:8448 ssl default_server;
server_name matrix.example.com; server_name matrix.example.com;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment