Merge pull request #735 from HorayNarea/fix-dhparam

fix dhparam.pem shadowing in 1.5
This commit is contained in:
Tim Möhlmann
2018-12-08 11:58:15 +02:00
committed by GitHub
3 changed files with 1 additions and 3 deletions

View File

@@ -8,6 +8,4 @@ RUN pip install "idna<2.7"
COPY conf /conf
COPY *.py /
COPY dhparam.pem /certs/dhparam.pem
CMD /start.py

View File

@@ -4,4 +4,4 @@ ssl_prefer_server_ciphers on;
ssl_session_timeout 10m;
ssl_certificate {{ TLS[0] }};
ssl_certificate_key {{ TLS[1] }};
ssl_dhparam /certs/dhparam.pem;
ssl_dhparam /conf/dhparam.pem;