私有证书不被edge浏览器认可的问题的解决-Debian13环境下

一、问题描述:

我自建了一个wiki.ssbbcc.com 的私有网站,不知道因为什么原因,edge浏览器无法打开了,出现了下面的错误提示内容:

bash 复制代码
wiki.ssbbcc.com uses encryption to protect your information. When Microsoft Edge tried to connect to wiki.ssbbcc.com this time, the website sent back unusual and incorrect credentials. This may happen when an attacker is trying to pretend to be wiki.ssbbcc.com, or a Wi-Fi sign-in screen has interrupted the connection. Your information is still secure because Microsoft Edge stopped the connection before any data was exchanged.

You can't visit wiki.ssbbcc.com right now because the website uses HSTS. Network errors and attacks are usually temporary, so this page will probably work later.

二、解决方法

1. 在Edge中清除HSTS:

打开 edge://net-internals/#hsts

在 "Delete domain security policies" 中输入 wiki.ssbbcc.com

点击 "Delete"

2. 重新倒入生成的证书的 *.crt 部分

bash 复制代码
# 重新导入根证书到系统信任库-Debian13
sudo cp /home/SSL/*.crt /usr/local/share/ca-certificates/
sudo update-ca-certificates

# 或者在Windows中重新导入
certutil -addstore -f "Root" rootCA.crt

三、重启edge,打开网站

如果以上还没有解决,可尝试禁用该网站的证书验证

四、禁用edge对指定网站的证书验证

五、问题的原因在于 HSTS技术

后继分析原因,是因为我的网站采用了强制301转换为https, 由于申请的证书过期,edge严格阻止了该网站的访问。

相关推荐
kyriewen6 小时前
Anthropic 估值逼近万亿美元,Claude Sonnet 5 + Claude Science 一天两连发
前端·ai编程·claude
小徐_23337 小时前
Wot UI 2.2.0 发布:Button 新增 subtle,VideoPreview 预览体验继续增强
前端·微信小程序·uni-app
天蓝色的鱼鱼9 小时前
关于 CSS 你可能不知道的属性,但关键时刻很有用
前端·css
泯泷10 小时前
第 2 篇:设计第一套字节码:Opcode、Instruction 与 Constant Pool
前端·javascript·安全
妙码生花10 小时前
从 PHP 到 AI + Golang,程序员自救转型手记(十五):优化细节、网络请求封装
前端·后端·ai编程
泯泷10 小时前
第 1 篇:从 1 + 2 开始:亲手写出第一台 JSVM
前端·javascript·安全
团团崽_七分甜10 小时前
Spring Boot 核心知识点总结
前端
lichenyang45311 小时前
从一个按钮开始,理解 ASCF 框架到底在做什么
前端
古夕11 小时前
第三方 SSO 接入实践:redirect_uri 编码、回调一致性与跨项目联调
前端·vue.js