forked from MirrorHub/synapse
Begin changing the config format
This commit is contained in:
parent
b8690dd840
commit
f7f07dc517
1 changed files with 24 additions and 8 deletions
|
@ -61,14 +61,6 @@ class ServerConfig(Config):
|
||||||
# e.g. matrix.org, localhost:8080, etc.
|
# e.g. matrix.org, localhost:8080, etc.
|
||||||
server_name: "%(server_name)s"
|
server_name: "%(server_name)s"
|
||||||
|
|
||||||
# The port to listen for HTTPS requests on.
|
|
||||||
# For when matrix traffic is sent directly to synapse.
|
|
||||||
bind_port: %(bind_port)s
|
|
||||||
|
|
||||||
# The port to listen for HTTP requests on.
|
|
||||||
# For when matrix traffic passes through loadbalancer that unwraps TLS.
|
|
||||||
unsecure_port: %(unsecure_port)s
|
|
||||||
|
|
||||||
# Local interface to listen on.
|
# Local interface to listen on.
|
||||||
# The empty string will cause synapse to listen on all interfaces.
|
# The empty string will cause synapse to listen on all interfaces.
|
||||||
bind_host: ""
|
bind_host: ""
|
||||||
|
@ -92,6 +84,30 @@ class ServerConfig(Config):
|
||||||
# This should be disabled if running synapse behind a load balancer
|
# This should be disabled if running synapse behind a load balancer
|
||||||
# that can do automatic compression.
|
# that can do automatic compression.
|
||||||
gzip_responses: True
|
gzip_responses: True
|
||||||
|
|
||||||
|
listeners:
|
||||||
|
# For when matrix traffic is sent directly to synapse.
|
||||||
|
secure:
|
||||||
|
# The type of
|
||||||
|
type: http_resource
|
||||||
|
|
||||||
|
# The port to listen for HTTPS requests on.
|
||||||
|
port: %(bind_port)s
|
||||||
|
|
||||||
|
# Is this a TLS socket?
|
||||||
|
tls: true
|
||||||
|
|
||||||
|
# Local interface to listen on.
|
||||||
|
# The empty string will cause synapse to listen on all interfaces.
|
||||||
|
bind_address: ""
|
||||||
|
|
||||||
|
# For when matrix traffic passes through loadbalancer that unwraps TLS.
|
||||||
|
unsecure:
|
||||||
|
port: %(unsecure_port)s
|
||||||
|
tls: false
|
||||||
|
bind_address: ""
|
||||||
|
|
||||||
|
|
||||||
""" % locals()
|
""" % locals()
|
||||||
|
|
||||||
def read_arguments(self, args):
|
def read_arguments(self, args):
|
||||||
|
|
Loading…
Reference in a new issue