TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Deprecation of Legacy TLS 1.0 and 1.1 Versions

62 点作者 Aaronn超过 6 年前

2 条评论

petecooper超过 6 年前
[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 未加载
gsnedders超过 6 年前
Does this affect other users of NSURL too?