Skip to content

Commit

Permalink
listen http2 deprecated nginx (updating documentation) (#16831)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
altf4arnold authored Jan 22, 2024
1 parent a68b48a commit 8459ac9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions changelog.d/16831.doc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NGINX listen http2 deprecation in documentation template for reverse proxy.
8 changes: 4 additions & 4 deletions docs/reverse_proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ reverse proxy is using.

```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;
Expand Down

0 comments on commit 8459ac9

Please sign in to comment.