Welcome to Centmin Mod Community
Register Now

Letsencrypt Support for TLS v 1.3 not shown in ssl testing

Discussion in 'Domains, DNS, Email & SSL Certificates' started by Dnyan, Aug 11, 2019.

  1. Dnyan

    Dnyan Member

    106
    24
    18
    Sep 16, 2017
    Ratings:
    +36
    Local Time:
    5:35 PM
    1.17.8
    10.3.22
    I tested my webpage at ssllabs, in test it is howing its not supporting TLS v 1.3

    Does letsencrypt wont support tls v 1.3 or do i need to configure something to work with tls v 1.3/


    Thank You
     
  2. eva2000

    eva2000 Administrator Staff Member

    58,895
    12,490
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +19,122
    Local Time:
    10:05 PM
    Nginx 1.31.x
    MariaDB 10.x/11.4+/12.3+
    how old is your 123.09beta01 install ? TLS 1.3 should be default these days

    what is output for outputting the contents of ssl_include.conf file via cat
    Code (Text):
    cat /usr/local/nginx/conf/ssl_include.conf

    ssl_protocols should be
    Code (Text):
    ssl_protocols  TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;

    if TLSv1.3 isn't listed, add it and then restart nginx server
     
  3. Dnyan

    Dnyan Member

    106
    24
    18
    Sep 16, 2017
    Ratings:
    +36
    Local Time:
    5:35 PM
    1.17.8
    10.3.22
    it was more than 2 year old, i added TSLv1.3 in that line and restarted nginx

    Now its showing working, thanks a lot.