From ff65c92931156669beb3ff3b55d2318fd3a8f096 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Fri, 17 Dec 2021 13:57:30 +0100 Subject: [PATCH] fix #3790: pass TLS 1.3 ciphersuites if set MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabian Grünbichler --- PVE/Service/pveproxy.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/PVE/Service/pveproxy.pm b/PVE/Service/pveproxy.pm index 31493dbf..61424d77 100755 --- a/PVE/Service/pveproxy.pm +++ b/PVE/Service/pveproxy.pm @@ -105,6 +105,7 @@ sub init { policy => $proxyconf->{POLICY}, ssl => { cipher_list => $proxyconf->{CIPHERS}, + ciphersuites => $proxyconf->{CIPHERSUITES}, key_file => '/etc/pve/local/pve-ssl.key', cert_file => '/etc/pve/local/pve-ssl.pem', honor_cipher_order => $proxyconf->{HONOR_CIPHER_ORDER},