mirror of
https://github.com/webmin/webmin.git
synced 2026-05-04 22:30:33 +01:00
TLS 1.3 is only supported in Apache 2.4.37+ https://virtualmin.com/node/68219
This commit is contained in:
@@ -38,7 +38,10 @@ sub get_sslprotos
|
||||
{
|
||||
my @sslprotos = ("SSLv2", "SSLv3", "TLSv1" );
|
||||
if ($httpd_modules{'core'} >= 2.215) {
|
||||
push(@sslprotos, "TLSv1.1", "TLSv1.2", "TLSv1.3");
|
||||
push(@sslprotos, "TLSv1.1", "TLSv1.2");
|
||||
}
|
||||
if ($httpd_modules{'core'} >= 2.437) {
|
||||
push(@sslprotos, "TLSv1.3");
|
||||
}
|
||||
return @sslprotos;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user