Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
bb2577f6
Unverified
Commit
bb2577f6
authored
4 years ago
by
David Vo
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add http2 to the nginx example config (#9390)
parent
43f1c824
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
changelog.d/9390.doc
+1
-0
1 addition, 0 deletions
changelog.d/9390.doc
docs/reverse_proxy.md
+4
-4
4 additions, 4 deletions
docs/reverse_proxy.md
with
5 additions
and
4 deletions
changelog.d/9390.doc
0 → 100644
+
1
−
0
View file @
bb2577f6
Add HTTP/2 support to the nginx example configuration. Contributed by David Vo.
This diff is collapsed.
Click to expand it.
docs/reverse_proxy.md
+
4
−
4
View file @
bb2577f6
...
@@ -40,12 +40,12 @@ the reverse proxy and the homeserver.
...
@@ -40,12 +40,12 @@ the reverse proxy and the homeserver.
```
```
server {
server {
listen 443 ssl;
listen 443 ssl
http2
;
listen [::]:443 ssl;
listen [::]:443 ssl
http2
;
# For the federation port
# For the federation port
listen 8448 ssl default_server;
listen 8448 ssl
http2
default_server;
listen [::]:8448 ssl default_server;
listen [::]:8448 ssl
http2
default_server;
server_name matrix.example.com;
server_name matrix.example.com;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment