From 82274422fb1f073a2b02e1d72b4c8d340d2520ac Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Tue, 20 Oct 2015 15:53:58 -0700 Subject: [PATCH] Installs using the Perl installer should also disable old SSL versions --- setup.pl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.pl b/setup.pl index 8eff74211..874d9a201 100755 --- a/setup.pl +++ b/setup.pl @@ -373,6 +373,10 @@ else { 'logtime' => 168, 'ppath' => $ppath, 'ssl' => $ssl, + 'no_ssl2' => 1, + 'no_ssl3' => 1, + 'no_tls1' => 1, + 'no_tls1_1' => 1, 'env_WEBMIN_CONFIG' => $config_directory, 'env_WEBMIN_VAR' => $var_dir, 'atboot' => $atboot,