Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
522f285f
Commit
522f285f
authored
9 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Add config option to disable compression of http responses
parent
b579a8ea
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
synapse/app/homeserver.py
+8
-2
8 additions, 2 deletions
synapse/app/homeserver.py
synapse/config/server.py
+6
-0
6 additions, 0 deletions
synapse/config/server.py
with
14 additions
and
2 deletions
synapse/app/homeserver.py
+
8
−
2
View file @
522f285f
...
...
@@ -87,10 +87,16 @@ class SynapseHomeServer(HomeServer):
return
MatrixFederationHttpClient
(
self
)
def
build_resource_for_client
(
self
):
return
gz_wrap
(
ClientV1RestResource
(
self
))
res
=
ClientV1RestResource
(
self
)
if
self
.
config
.
gzip_responses
:
res
=
gz_wrap
(
res
)
return
res
def
build_resource_for_client_v2_alpha
(
self
):
return
gz_wrap
(
ClientV2AlphaRestResource
(
self
))
res
=
ClientV2AlphaRestResource
(
self
)
if
self
.
config
.
gzip_responses
:
res
=
gz_wrap
(
res
)
return
res
def
build_resource_for_federation
(
self
):
return
JsonResource
(
self
)
...
...
This diff is collapsed.
Click to expand it.
synapse/config/server.py
+
6
−
0
View file @
522f285f
...
...
@@ -29,6 +29,7 @@ class ServerConfig(Config):
self
.
soft_file_limit
=
config
[
"
soft_file_limit
"
]
self
.
daemonize
=
config
.
get
(
"
daemonize
"
)
self
.
use_frozen_dicts
=
config
.
get
(
"
use_frozen_dicts
"
,
True
)
self
.
gzip_responses
=
config
[
"
gzip_responses
"
]
# Attempt to guess the content_addr for the v0 content repostitory
content_addr
=
config
.
get
(
"
content_addr
"
)
...
...
@@ -86,6 +87,11 @@ class ServerConfig(Config):
# Turn on the twisted telnet manhole service on localhost on the given
# port.
#manhole: 9000
# Should synapse compress HTTP responses to clients that support it?
# This should be disabled if running synapse behind a load balancer
# that can do automatic compression.
gzip_responses: True
"""
%
locals
()
def
read_arguments
(
self
,
args
):
...
...
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