Comments on How to Enable TLS 1.3 in Nginx
Transport Layer Security (TLS) 1.3 is the latest version of the Transport Layer Security (TLS) protocol, published as an IETF standard in RFC 8446 in August 2018. TLS 1.3 protocol provides privacy and performance enhancements compared to the previous versions of TLS and non-secure HTTP. This tutorial shows how to enable TLS 1.3 in a Nginx web server.
5 Comment(s)
Comments
Hi.TLSv1.3 must be first in nginx directive: ssl_protocols TLSv1.3 TLSv1.2;
Order doesn't matter.
It does matter and this tut list no TLSv1.3 ciphers, totally useless
It should be stressed that while http/2 doesn't mandate using SSL connections, no current browsers support http/2 without SSL connections.
This code will work to enable TSL protocol ??