Level 122
ideally you would be dropping the older protocols, definitely drop tls1.1
https://www.waratek.com/the-end-is-near-after-decades-tls-1-0-1-1-go-end-of-life-in-march/
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
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
Ok. So, how can I add just TLSv1.2?
Because TLSv1.3 is a problem for flutter.
Please or to participate in this conversation.