mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
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
This commit is contained in:
parent
a68b48a5dd
commit
8459ac9be2
1
changelog.d/16831.doc
Normal file
1
changelog.d/16831.doc
Normal file
@ -0,0 +1 @@
|
|||||||
|
NGINX listen http2 deprecation in documentation template for reverse proxy.
|
@ -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;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user