diff options
author | Daniel Wagner-Hall <daniel@matrix.org> | 2015-09-09 12:02:07 +0100 |
---|---|---|
committer | Daniel Wagner-Hall <daniel@matrix.org> | 2015-09-09 12:02:07 +0100 |
commit | 81a93ddcc8798568276582ed9c7a63bc64dc5bc0 (patch) | |
tree | 6e90aaf6a19d5a7fd1f912111cb7ade49bb698cd /synapse/config | |
parent | update logger to match new ambiguous script name... (diff) | |
download | synapse-81a93ddcc8798568276582ed9c7a63bc64dc5bc0.tar.xz |
Allow configuration to ignore invalid SSL certs
This will be useful for sytest, and sytest only, hence the aggressive config key name.
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/tls.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/config/tls.py b/synapse/config/tls.py index 4751d39bc9..472cf7ac4a 100644 --- a/synapse/config/tls.py +++ b/synapse/config/tls.py @@ -42,6 +42,10 @@ class TlsConfig(Config): config.get("tls_dh_params_path"), "tls_dh_params" ) + self.use_insecure_ssl_client = config.get( + "i_really_want_to_ignore_ssl_certs_when_i_am_an_http_client_even_" + "though_it_is_woefully_insecure_because_i_hate_my_users", False) + def default_config(self, config_dir_path, server_name): base_key_name = os.path.join(config_dir_path, server_name) |