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'.
This commit is contained in:
Dietmar Maurer 2015-02-09 10:57:30 +01:00
parent 7ba6e873fe
commit 47c8f4d282

View File

@ -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',