mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Some ecdh_curve don't work on jessie
This commit is contained in:
parent
c037803d3f
commit
3feae2e877
2 changed files with 12 additions and 2 deletions
|
@ -19,8 +19,13 @@ server {
|
||||||
ssl_certificate_key /etc/yunohost/certs/yunohost.org/key.pem;
|
ssl_certificate_key /etc/yunohost/certs/yunohost.org/key.pem;
|
||||||
ssl_session_timeout 5m;
|
ssl_session_timeout 5m;
|
||||||
ssl_session_cache shared:SSL:50m;
|
ssl_session_cache shared:SSL:50m;
|
||||||
|
|
||||||
# As suggested by Mozilla : https://wiki.mozilla.org/Security/Server_Side_TLS and https://en.wikipedia.org/wiki/Curve25519
|
# As suggested by Mozilla : https://wiki.mozilla.org/Security/Server_Side_TLS and https://en.wikipedia.org/wiki/Curve25519
|
||||||
ssl_ecdh_curve secp521r1:secp384r1:prime256v1;
|
# (this doesn't work on jessie though ...?)
|
||||||
|
# ssl_ecdh_curve secp521r1:secp384r1:prime256v1;
|
||||||
|
|
||||||
|
# As suggested by https://cipherli.st/
|
||||||
|
ssl_ecdh_curve secp384r1;
|
||||||
|
|
||||||
ssl_prefer_server_ciphers on;
|
ssl_prefer_server_ciphers on;
|
||||||
|
|
||||||
|
|
|
@ -24,8 +24,13 @@ server {
|
||||||
ssl_certificate_key /etc/yunohost/certs/{{ domain }}/key.pem;
|
ssl_certificate_key /etc/yunohost/certs/{{ domain }}/key.pem;
|
||||||
ssl_session_timeout 5m;
|
ssl_session_timeout 5m;
|
||||||
ssl_session_cache shared:SSL:50m;
|
ssl_session_cache shared:SSL:50m;
|
||||||
|
|
||||||
# As suggested by Mozilla : https://wiki.mozilla.org/Security/Server_Side_TLS and https://en.wikipedia.org/wiki/Curve25519
|
# As suggested by Mozilla : https://wiki.mozilla.org/Security/Server_Side_TLS and https://en.wikipedia.org/wiki/Curve25519
|
||||||
ssl_ecdh_curve secp521r1:secp384r1:prime256v1;
|
# (this doesn't work on jessie though ...?)
|
||||||
|
# ssl_ecdh_curve secp521r1:secp384r1:prime256v1;
|
||||||
|
|
||||||
|
# As suggested by https://cipherli.st/
|
||||||
|
ssl_ecdh_curve secp384r1;
|
||||||
|
|
||||||
ssl_prefer_server_ciphers on;
|
ssl_prefer_server_ciphers on;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue