mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
15502e5e33
Not only Ubuntu Focal builds openssl with OPENSSL_TLS_SECURITY_LEVEL=2, but for some unfathomable reason it patches openssl sources to disable TLS < 1.2 at security level 2, even though openssl manual says it should only happen at level 4: https://www.openssl.org/docs/man1.1.0/man3/SSL_CTX_set_security_level.html We test TLSv1.1 and TLSv1, so we have to override Focal defaults in mtr.
12 lines
298 B
INI
12 lines
298 B
INI
# Toplevel section for openssl (including libssl)
|
|
openssl_conf = default_conf_section
|
|
|
|
[default_conf_section]
|
|
# We only specify configuration for the "ssl module"
|
|
ssl_conf = ssl_section
|
|
|
|
[ssl_section]
|
|
system_default = system_default_section
|
|
|
|
[system_default_section]
|
|
CipherString = ALL:@SECLEVEL=1
|