mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-05 16:54:56 -04:00
Remove support for ACME v1 (#10194)
Fixes #9778 ACME v1 has been fully decommissioned for existing installs on June 1st 2021(see https://community.letsencrypt.org/t/end-of-life-plan-for-acmev1/88430/27), so we can now safely remove it from Synapse.
This commit is contained in:
parent
8c97d5863f
commit
08c8469322
18 changed files with 18 additions and 836 deletions
|
@ -405,7 +405,6 @@ class RootConfig:
|
|||
listeners=None,
|
||||
tls_certificate_path=None,
|
||||
tls_private_key_path=None,
|
||||
acme_domain=None,
|
||||
):
|
||||
"""
|
||||
Build a default configuration file
|
||||
|
@ -457,9 +456,6 @@ class RootConfig:
|
|||
|
||||
tls_private_key_path (str|None): The path to the tls private key.
|
||||
|
||||
acme_domain (str|None): The domain acme will try to validate. If
|
||||
specified acme will be enabled.
|
||||
|
||||
Returns:
|
||||
str: the yaml config file
|
||||
"""
|
||||
|
@ -477,7 +473,6 @@ class RootConfig:
|
|||
listeners=listeners,
|
||||
tls_certificate_path=tls_certificate_path,
|
||||
tls_private_key_path=tls_private_key_path,
|
||||
acme_domain=acme_domain,
|
||||
).values()
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue