[PATCH] Tests: enabled TLSv1 in ssl_sni_reneg.t

Maxim Dounin mdounin at mdounin.ru
Sun Jul 9 21:24:25 UTC 2023


# HG changeset patch
# User Maxim Dounin <mdounin at mdounin.ru>
# Date 1688521184 -10800
#      Wed Jul 05 04:39:44 2023 +0300
# Node ID 85188791cd9cf688a29401e31221551345b76ff4
# Parent  c5767845481fc1d7df3e56b604fc4afdeab7be85
Tests: enabled TLSv1 in ssl_sni_reneg.t.

This fixes running the test with OpenSSL before 1.0.1, where TLSv1.2
support was introduced.

diff --git a/ssl_sni_reneg.t b/ssl_sni_reneg.t
--- a/ssl_sni_reneg.t
+++ b/ssl_sni_reneg.t
@@ -41,7 +41,7 @@ http {
 
     ssl_certificate_key localhost.key;
     ssl_certificate localhost.crt;
-    ssl_protocols TLSv1.2;
+    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
 
     server {
         listen       127.0.0.1:8443 ssl;


More information about the nginx-devel mailing list