]> git.proxmox.com Git - pve-manager.git/commitdiff
pveproxy: set method to tlsv1 - required for IE
authorDietmar Maurer <dietmar@proxmox.com>
Mon, 9 Feb 2015 09:57:30 +0000 (10:57 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Mon, 9 Feb 2015 09:57:30 +0000 (10:57 +0100)
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

index a9b6f1c7d3a5b37ab854f945da1f79a6b5c47a66..63e8590fd40ffee8b141316672e719d76219f4f8 100755 (executable)
@@ -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',