From 4397e6b8b322f5e706b41e08bdef64af3f114a92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Fri, 9 Dec 2022 21:44:13 +0200 Subject: [PATCH] =?UTF-8?q?misc/examples:=20change=20tls=5Fmethod=20SSLv23?= =?UTF-8?q?=20=E2=86=92=20TLSv1.2+?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- misc/examples/outbound/edge_websocket.cfg | 2 +- misc/examples/webrtc/websocket.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/examples/outbound/edge_websocket.cfg b/misc/examples/outbound/edge_websocket.cfg index 843ec204b54..79d7de49dca 100644 --- a/misc/examples/outbound/edge_websocket.cfg +++ b/misc/examples/outbound/edge_websocket.cfg @@ -89,7 +89,7 @@ modparam("corex", "alias_subdomains", "MY_DOMAIN") #!ifdef WITH_TLS # ----- tls params ----- -modparam("tls", "tls_method", "SSLv23") +modparam("tls", "tls_method", "TLSv1.2+") modparam("tls", "certificate", "/etc/pki/CA/ser1_cert.pem") modparam("tls", "private_key", "/etc/pki/CA/privkey.pem") modparam("tls", "ca_list", "/etc/pki/CA/calist.pem") diff --git a/misc/examples/webrtc/websocket.cfg b/misc/examples/webrtc/websocket.cfg index 9fa4229c69d..efb1c0baf9a 100644 --- a/misc/examples/webrtc/websocket.cfg +++ b/misc/examples/webrtc/websocket.cfg @@ -125,7 +125,7 @@ modparam("corex", "alias_subdomains", "MY_DOMAIN") #!ifdef WITH_TLS # ----- tls params ----- -modparam("tls", "tls_method", "SSLv23") +modparam("tls", "tls_method", "TLSv1.2+") modparam("tls", "certificate", "/etc/pki/CA/ser1_cert.pem") modparam("tls", "private_key", "/etc/pki/CA/privkey.pem") modparam("tls", "ca_list", "/etc/pki/CA/calist.pem")