diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2020-02-14 10:47:29 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2020-02-14 10:47:29 +0000 |
commit | ca2c8ea35a0f1146c9d1729d0a43b664a3235b70 (patch) | |
tree | 89974d529fc30367f5a9860194c0fcc42d68426b /synapse/config/server.py | |
parent | Merge pull request #5523 from matrix-org/rav/arg_defaults (diff) | |
parent | Merge pull request #5524 from matrix-org/rav/new_cmdline_options (diff) | |
download | synapse-ca2c8ea35a0f1146c9d1729d0a43b664a3235b70.tar.xz |
Merge pull request #5524 from matrix-org/rav/new_cmdline_options
Diffstat (limited to 'synapse/config/server.py')
-rw-r--r-- | synapse/config/server.py | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/synapse/config/server.py b/synapse/config/server.py index c52d65e101..85b5d766e0 100644 --- a/synapse/config/server.py +++ b/synapse/config/server.py @@ -457,7 +457,9 @@ class ServerConfig(Config): def has_tls_listener(self): return any(l["tls"] for l in self.listeners) - def generate_config_section(self, server_name, data_dir_path, **kwargs): + def generate_config_section( + self, server_name, data_dir_path, open_private_ports, **kwargs + ): _, bind_port = parse_and_validate_server_name(server_name) if bind_port is not None: unsecure_port = bind_port - 400 @@ -470,6 +472,13 @@ class ServerConfig(Config): # Bring DEFAULT_ROOM_VERSION into the local-scope for use in the # default config string default_room_version = DEFAULT_ROOM_VERSION + + unsecure_http_binding = "port: %i\n tls: false" % (unsecure_port,) + if not open_private_ports: + unsecure_http_binding += ( + "\n bind_addresses: ['::1', '127.0.0.1']" + ) + return ( """\ ## Server ## @@ -672,9 +681,7 @@ class ServerConfig(Config): # If you plan to use a reverse proxy, please see # https://github.com/matrix-org/synapse/blob/master/docs/reverse_proxy.rst. # - - port: %(unsecure_port)s - tls: false - bind_addresses: ['::1', '127.0.0.1'] + - %(unsecure_http_binding)s type: http x_forwarded: true @@ -682,7 +689,7 @@ class ServerConfig(Config): - names: [client, federation] compress: false - # example additonal_resources: + # example additional_resources: # #additional_resources: # "/_matrix/my/custom/endpoint": |