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)

Add comment

Please register in our forum first to comment.

Comments

By: werter

Hi.TLSv1.3 must be first in nginx directive: ssl_protocols TLSv1.3 TLSv1.2;  

By: mikey

Order doesn't matter.

By: John

It does matter and this tut list no TLSv1.3 ciphers, totally useless

By: Yuhji

It should be stressed that while http/2 doesn't mandate using SSL connections, no current browsers support http/2 without SSL connections.

By: Meerkumar

This code will work to enable TSL protocol ??