Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Add http2 to the nginx example config #9390

Merged
merged 1 commit into from
Feb 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/9390.doc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add HTTP/2 support to the nginx example configuration. Contributed by David Vo.
8 changes: 4 additions & 4 deletions docs/reverse_proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ the reverse proxy and the homeserver.

```
server {
listen 443 ssl;
listen [::]:443 ssl;
listen 443 ssl http2;
listen [::]:443 ssl http2;

# For the federation port
listen 8448 ssl default_server;
listen [::]:8448 ssl default_server;
listen 8448 ssl http2 default_server;
listen [::]:8448 ssl http2 default_server;

server_name matrix.example.com;

Expand Down