Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
45bb55c6
Commit
45bb55c6
authored
6 years ago
by
Brendan Abolivier
Browse files
Options
Downloads
Patches
Plain Diff
Use a configuration parameter to give the domain to generate a certificate for
parent
68a53f82
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
synapse/config/tls.py
+7
-0
7 additions, 0 deletions
synapse/config/tls.py
synapse/handlers/acme.py
+4
-25
4 additions, 25 deletions
synapse/handlers/acme.py
with
11 additions
and
25 deletions
synapse/config/tls.py
+
7
−
0
View file @
45bb55c6
...
...
@@ -42,6 +42,7 @@ class TlsConfig(Config):
self
.
acme_port
=
acme_config
.
get
(
"
port
"
,
80
)
self
.
acme_bind_addresses
=
acme_config
.
get
(
"
bind_addresses
"
,
[
'
::
'
,
'
0.0.0.0
'
])
self
.
acme_reprovision_threshold
=
acme_config
.
get
(
"
reprovision_threshold
"
,
30
)
self
.
acme_domain
=
acme_config
.
get
(
"
domain
"
,
config
.
get
(
"
server_name
"
))
self
.
tls_certificate_file
=
self
.
abspath
(
config
.
get
(
"
tls_certificate_path
"
))
self
.
tls_private_key_file
=
self
.
abspath
(
config
.
get
(
"
tls_private_key_path
"
))
...
...
@@ -229,6 +230,12 @@ class TlsConfig(Config):
#
# reprovision_threshold: 30
# What domain the certificate should be for. Only useful if
# delegation via a /.well-known/matrix/server file is being used.
# Defaults to the server_name configuration parameter.
#
# domain: matrix.example.com
# List of allowed TLS fingerprints for this server to publish along
# with the signing keys for this server. Other matrix servers that
# make HTTPS requests to this server will check that the TLS
...
...
This diff is collapsed.
Click to expand it.
synapse/handlers/acme.py
+
4
−
25
View file @
45bb55c6
...
...
@@ -27,8 +27,6 @@ from twisted.web import server, static
from
twisted.web.resource
import
Resource
from
synapse.app
import
check_bind_error
from
synapse.crypto.context_factory
import
ClientTLSOptionsFactory
from
synapse.http.federation.matrix_federation_agent
import
MatrixFederationAgent
logger
=
logging
.
getLogger
(
__name__
)
...
...
@@ -125,34 +123,15 @@ class AcmeHandler(object):
@defer.inlineCallbacks
def
provision_certificate
(
self
):
# Retrieve .well-known if it's in use. We do so through the federation
# agent, because that's where the .well-known logic lives.
agent
=
MatrixFederationAgent
(
tls_client_options_factory
=
ClientTLSOptionsFactory
(
None
),
reactor
=
self
.
reactor
,
)
delegated
=
yield
agent
.
_get_well_known
(
bytes
(
self
.
hs
.
hostname
,
"
ascii
"
))
# If .well-known is in use, use the delegated hostname instead of the
# homeserver's server_name.
if
delegated
:
cert_name
=
delegated
.
decode
(
"
ascii
"
)
logger
.
info
(
"
.well-known is in use, provisioning %s instead of %s
"
,
cert_name
,
self
.
hs
.
hostname
,
)
else
:
cert_name
=
self
.
hs
.
hostname
logger
.
warning
(
"
Reprovisioning %s
"
,
cert_name
)
logger
.
warning
(
"
Reprovisioning %s
"
,
self
.
hs
.
config
.
acme_domain
)
try
:
yield
self
.
_issuer
.
issue_cert
(
cert_name
)
yield
self
.
_issuer
.
issue_cert
(
self
.
hs
.
config
.
acme_domain
)
except
Exception
:
logger
.
exception
(
"
Fail!
"
)
raise
logger
.
warning
(
"
Reprovisioned %s, saving.
"
,
cert_name
)
cert_chain
=
self
.
_store
.
certs
[
cert_name
]
logger
.
warning
(
"
Reprovisioned %s, saving.
"
,
self
.
hs
.
config
.
acme_domain
)
cert_chain
=
self
.
_store
.
certs
[
self
.
hs
.
config
.
acme_domain
]
try
:
with
open
(
self
.
hs
.
config
.
tls_private_key_file
,
"
wb
"
)
as
private_key_file
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment