mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
certmanager: Disable renegotiation by default
This requires LuaSec 0.7+ and OpenSSL 1.1.1+
This commit is contained in:
parent
08f721a072
commit
f0c2ed1201
1 changed files with 2 additions and 0 deletions
|
@ -55,6 +55,7 @@ local luasec_has = ssl.config or softreq"ssl.config" or {
|
|||
no_compression = test_option("no_compression");
|
||||
single_dh_use = test_option("single_dh_use");
|
||||
single_ecdh_use = test_option("single_ecdh_use");
|
||||
no_renegotiation = test_option("no_renegotiation");
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -119,6 +120,7 @@ local core_defaults = {
|
|||
no_compression = luasec_has.options.no_compression and configmanager.get("*", "ssl_compression") ~= true;
|
||||
single_dh_use = luasec_has.options.single_dh_use;
|
||||
single_ecdh_use = luasec_has.options.single_ecdh_use;
|
||||
no_renegotiation = luasec_has.options.no_renegotiation;
|
||||
};
|
||||
verifyext = { "lsec_continue", "lsec_ignore_purpose" };
|
||||
curve = luasec_has.algorithms.ec and not luasec_has.capabilities.curves_list and "secp384r1";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue