From 47c8f4d282293b922f74b751aec64f3fd6db6cf5 Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Mon, 9 Feb 2015 10:57:30 +0100 Subject: [PATCH] pveproxy: set method to tlsv1 - required for IE IE does not work without setting this. Seems TLSv1_1 and TLSv1_2 requires Net::SSLeay >= 1.55 (see AnyEvent::TLS). So this should work when we upgrade to Debian 'jessie'. --- bin/pveproxy | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/pveproxy b/bin/pveproxy index a9b6f1c7..63e8590f 100755 --- a/bin/pveproxy +++ b/bin/pveproxy @@ -107,6 +107,7 @@ sub init { ssl => { # Note: older versions are considered insecure, for example # search for "Poodle"-Attac + method => 'tlsv1', sslv2 => 0, sslv3 => 0, cipher_list => $proxyconf->{CIPHERS} || 'HIGH:MEDIUM:!aNULL:!MD5',