Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

isadma's avatar

How can I add TLSv1.2 and TLSv1.1 to ssl protocols?

Even if I don't add TLSv1.3, still only TLSv1.3 appears.

How can I add TLSv1.2 and TLSv1.1 to ssl protocols?

You can check on this link: https://ibb.co/4WYd0Jw

it is my nginx conf:

ssl_session_cache shared:le_nginx_SSL:1m;
ssl_session_timeout 1440m;

ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;

It is my nginx and openssl version:

nginx version: nginx/1.18.0
built with OpenSSL 1.1.1g  21 Apr 2020
TLS SNI support enabled
0 likes
3 replies
isadma's avatar
isadma
OP
Best Answer
Level 2

Ok. So, how can I add just TLSv1.2?

Because TLSv1.3 is a problem for flutter.

Please or to participate in this conversation.