Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fix default ACME config for py2 (#4564)
Browse files Browse the repository at this point in the history
Fixes #4559
  • Loading branch information
richvdh authored Feb 5, 2019
1 parent 9a75c0b commit bf1e4d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/4564.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix default ACME config for py2
2 changes: 1 addition & 1 deletion synapse/config/tls.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def read_config(self, config):

self.acme_enabled = acme_config.get("enabled", False)
self.acme_url = acme_config.get(
"url", "https://acme-v01.api.letsencrypt.org/directory"
"url", u"https://acme-v01.api.letsencrypt.org/directory"
)
self.acme_port = acme_config.get("port", 80)
self.acme_bind_addresses = acme_config.get("bind_addresses", ['::', '0.0.0.0'])
Expand Down

0 comments on commit bf1e4d9

Please sign in to comment.