TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Deprecation of Legacy TLS 1.0 and 1.1 Versions

62 pointsby Aaronnover 6 years ago

2 comments

petecooperover 6 years ago
[Also posted in corresponding discussions for Firefox (<a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=18223672" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=18223672</a>) and Chrome (<a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=18221281" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=18221281</a>) ]<p>If you want Nginx to use TLS v1.2, this is what you need:<p><pre><code> ssl_protocols TLSv1.2; </code></pre> …and if you compile a recent Nginx from source and bake in OpenSSL 1.1.1 while you do that, you can have TLS v1.3 with a TLS v1.2 fallback, too:<p><pre><code> ssl_protocols TLSv1.3 TLSv1.2; </code></pre> See also:<p><a href="https:&#x2F;&#x2F;caniuse.com&#x2F;#feat=tls1-2" rel="nofollow">https:&#x2F;&#x2F;caniuse.com&#x2F;#feat=tls1-2</a><p><a href="https:&#x2F;&#x2F;caniuse.com&#x2F;#feat=tls1-3" rel="nofollow">https:&#x2F;&#x2F;caniuse.com&#x2F;#feat=tls1-3</a>
评论 #18237611 未加载
评论 #18240817 未加载
gsneddersover 6 years ago
Does this affect other users of NSURL too?