Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
8b69468e
Commit
8b69468e
authored
10 years ago
by
Mark Haines
Browse files
Options
Downloads
Patches
Plain Diff
Use pregenerated DH params when generating config
parent
bcfaaf7d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/config/tls.py
+29
-7
29 additions, 7 deletions
synapse/config/tls.py
with
29 additions
and
7 deletions
synapse/config/tls.py
+
29
−
7
View file @
8b69468e
...
@@ -19,6 +19,9 @@ from OpenSSL import crypto
...
@@ -19,6 +19,9 @@ from OpenSSL import crypto
import
subprocess
import
subprocess
import
os
import
os
GENERATE_DH_PARAMS
=
False
class
TlsConfig
(
Config
):
class
TlsConfig
(
Config
):
def
__init__
(
self
,
args
):
def
__init__
(
self
,
args
):
super
(
TlsConfig
,
self
).
__init__
(
args
)
super
(
TlsConfig
,
self
).
__init__
(
args
)
...
@@ -97,10 +100,29 @@ class TlsConfig(Config):
...
@@ -97,10 +100,29 @@ class TlsConfig(Config):
certifcate_file
.
write
(
cert_pem
)
certifcate_file
.
write
(
cert_pem
)
if
not
os
.
path
.
exists
(
args
.
tls_dh_params_path
):
if
not
os
.
path
.
exists
(
args
.
tls_dh_params_path
):
subprocess
.
check_call
([
if
GENERATE_DH_PARAMS
:
"
openssl
"
,
"
dhparam
"
,
subprocess
.
check_call
([
"
-outform
"
,
"
PEM
"
,
"
openssl
"
,
"
dhparam
"
,
"
-out
"
,
args
.
tls_dh_params_path
,
"
-outform
"
,
"
PEM
"
,
"
2048
"
"
-out
"
,
args
.
tls_dh_params_path
,
])
"
2048
"
])
else
:
with
open
(
args
.
tls_dh_params_path
,
"
w
"
)
as
dh_params_file
:
dh_params_file
.
write
(
"
2048-bit DH parameters taken from rfc3526
\n
"
"
-----BEGIN DH PARAMETERS-----
\n
"
"
MIIBCAKCAQEA///////////JD9qiIWjC
"
"
NMTGYouA3BzRKQJOCIpnzHQCC76mOxOb
\n
"
"
IlFKCHmONATd75UZs806QxswKwpt8l8U
"
"
N0/hNW1tUcJF5IW1dmJefsb0TELppjft
\n
"
"
awv/XLb0Brft7jhr+1qJn6WunyQRfEsf
"
"
5kkoZlHs5Fs9wgB8uKFjvwWY2kg2HFXT
\n
"
"
mmkWP6j9JM9fg2VdI9yjrZYcYvNWIIVS
"
"
u57VKQdwlpZtZww1Tkq8mATxdGwIyhgh
\n
"
"
fDKQXkYuNs474553LBgOhgObJ4Oi7Aei
"
"
j7XFXfBvTFLJ3ivL9pVYFxg5lUl86pVq
\n
"
"
5RXSJhiY+gUQFXKOWoqsqmj/////////
"
"
/wIBAg==
\n
"
"
-----END DH PARAMETERS-----
\n
"
)
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