mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-15 17:23:50 +01:00
Merge pull request #5362 from matrix-org/rav/fix_custom_ca
Fix `federation_custom_ca_list` configuration option.
This commit is contained in:
commit
a39be79216
2 changed files with 2 additions and 1 deletions
1
changelog.d/5362.bugfix
Normal file
1
changelog.d/5362.bugfix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Fix `federation_custom_ca_list` configuration option.
|
|
@ -107,7 +107,7 @@ class TlsConfig(Config):
|
||||||
certs = []
|
certs = []
|
||||||
for ca_file in custom_ca_list:
|
for ca_file in custom_ca_list:
|
||||||
logger.debug("Reading custom CA certificate file: %s", ca_file)
|
logger.debug("Reading custom CA certificate file: %s", ca_file)
|
||||||
content = self.read_file(ca_file)
|
content = self.read_file(ca_file, "federation_custom_ca_list")
|
||||||
|
|
||||||
# Parse the CA certificates
|
# Parse the CA certificates
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue