ASP.net MVC 5 TLS 1.2(chrome 关于 TLS 1.0 的警告已弃用)
ASP.net MVC 5 TLS 1.2 (chrome warning about TLS 1.0 deprecated)
使用 let's encrypt ssl
将 asp.net mvc5 网站部署到共享主机(plesk 面板)后,我在 chrome 控制台中看到此警告:
The connection used to load resources from https://example.com used TLS 1.0 or TLS 1.1, which are deprecated and will be disabled in the future. Once disabled, users will be prevented from loading these resources. The server should enable TLS 1.2 or later. See https://www.chromestatus.com/feature/5654791610957824 for more information.
这是可以在应用程序代码中修复的东西,还是服务器配置?
从评论中复制了一些附加信息。
来自Chrome的消息已经够清楚了,
- Chrome 尝试使用 TLS 1.2 确保安全(TLS 1.0 和 1.1 不被认为是安全的)。
- 服务器端不支持 Chrome 检测到的 TLS 1.2 握手。
因此,只有服务器管理员(或服务提供商 ISP)才能诊断和修复此类问题。
使用 let's encrypt ssl
将 asp.net mvc5 网站部署到共享主机(plesk 面板)后,我在 chrome 控制台中看到此警告:
The connection used to load resources from https://example.com used TLS 1.0 or TLS 1.1, which are deprecated and will be disabled in the future. Once disabled, users will be prevented from loading these resources. The server should enable TLS 1.2 or later. See https://www.chromestatus.com/feature/5654791610957824 for more information.
这是可以在应用程序代码中修复的东西,还是服务器配置?
从评论中复制了一些附加信息。
来自Chrome的消息已经够清楚了,
- Chrome 尝试使用 TLS 1.2 确保安全(TLS 1.0 和 1.1 不被认为是安全的)。
- 服务器端不支持 Chrome 检测到的 TLS 1.2 握手。
因此,只有服务器管理员(或服务提供商 ISP)才能诊断和修复此类问题。