惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 【当耐特】
Stack Overflow Blog
Stack Overflow Blog
V
Visual Studio Blog
小众软件
小众软件
The Cloudflare Blog
T
Tailwind CSS Blog
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
美团技术团队
WordPress大学
WordPress大学
罗磊的独立博客
Microsoft Azure Blog
Microsoft Azure Blog
A
About on SuperTechFans
Last Week in AI
Last Week in AI
月光博客
月光博客
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
G
Google Developers Blog
GbyAI
GbyAI
B
Blog
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗

SSL

SSL MTC 证书新标准, Chrome 已上。 - V2EX SSL 证书测试抽奖,欢迎各位提出建议,快来试试手气(今晚开奖) iTrustSSL 最新优惠码, DV 单域名 50 元/年 通配符 490 元/年 iTrustSSL 最新优惠码 还是折后 50 元/年 Let’s Encrypt 现在申请泛域名证书时, ECC256 是不是不支持 256 位加密算法 手动申请 IP SSL 证书 还有多少人在手动申请 SSL 证书? MySSL 推出了新的证书监控平台,还可以 ZeroSSL 怎么了? ACME 服务都挂了两天了 证书到期时间再次缩短! 《LiteSSL 公益项目全球启动:免费自动签发 TLS/SSL 证书,零门槛接入 HTTPS》 关于 Let's Encrypt 签发的证书 Ending OCSP Support in 2025 的后续问题 求助贴:阿里云的 个人测试证书 pro,不签发的话,有效期多久? Sectigo 单域名 SSL 证书 7.9 一年, Certum 通配符 SSL 证书 129 一年,代理拿货价 5 月份的 iTrustSSL 优惠码,优惠后仍然是 50 元/年 SSL/TLS 证书最大有效期缩短到了 47 天 iTrustSSL 来波活动 DV 单域名 折后 50 元/年 SSL 证书 单域名 40 元/年,通配符 235 元/年 免费赠送 10 个一年通配符域证书,通配符域证书低至$10/年 IP 证书拼车 Cloudflare 的 SSL.COM 证书是怎么获得的?是付费才有吗? 逛论坛发现一家提供一年期免费域名证书的,虽然只能买 3 个免费的 现在最便宜的单域名 SSL 一年期的 就是火山的 6.8 了吧 "Let's Encrypt is unable to validate domain names" 嗨,早上起来刷新证书,没想到 LE 也会出故障 SSL 证书有效期可能进一步缩短, FreeSSL 开启 ACME 支持 SSL 证书 单域名 40 元/年,通配符 239 元/年 Chrome 将不再信任 2024 年 10 月 31 日后 Entrust 签发的 TLS 证书 能否低价申请到 10 年有效期的证书? Sectigo SSL 证书 单域名 18 元/年,通配符 150 元/年 Sectigo/Certum 骨折价,单域名 20/年,通配符 188 一年
[求助]在阿里云 ECS Nginx 安装 godaddy SSL 证书后, Window...
insomniowl · 2025-05-21 · via SSL

现象

Windows Edge/Chrome/Firefox 都可以正常访问,浏览器地址栏安全锁显示正常

iPhone Safari 提示“Safari 浏览器打不开该网页,因为已丢失网络连接。”

iPhone Edge 提示“此站点的连接不安全”

MacOS Safari 提示“Safari can't open the page "https://<mydomain>/xx/xxx" because Safari can't establish a secure connection to the server "<mydomain>"”.


问了 OpenAI 家,目前一直在 tls 方向上努力

在服务器

]# openssl s_client -connect 127.0.0.1:443 -servername <mydomain> -tls1_2
]# openssl s_client -connect 127.0.0.1:443 -servername <mydomain> -tls1_3

都可以正常输出 Protocol 、Cipher 、证书链、证书等信息

New, TLSv1.2, Cipher is ECDHE-RSA-AES256-GCM-SHA384
SSL-Session:
    Protocol  : TLSv1.2
    Cipher    : ECDHE-RSA-AES256-GCM-SHA384
New, TLSv1.3, Cipher is TLS_AES_256_GCM_SHA384
SSL-Session:
    Protocol  : TLSv1.3
    Cipher    : TLS_AES_256_GCM_SHA384

在本机( Windows wsl/MacOS Terminal ) 具体信息如下

$ openssl s_client -connect <myip>:443 -servername <mydomain> -tls1_2
CONNECTED(00000003)
write:errno=0
---
no peer certificate available
---
No client certificate CA names sent
---
SSL handshake has read 0 bytes and written 213 bytes
Verification: OK
---
New, (NONE), Cipher is (NONE)
Secure Renegotiation IS NOT supported
Compression: NONE
Expansion: NONE
No ALPN negotiated
SSL-Session:
    Protocol  : TLSv1.2
    Cipher    : 0000
    Session-ID:
    Session-ID-ctx:
    Master-Key:
    PSK identity: None
    PSK identity hint: None
    SRP username: None
    Start Time: 1747836333
    Timeout   : 7200 (sec)
    Verify return code: 0 (ok)
    Extended master secret: no
---
$ openssl s_client -connect <myip>:443 -servername <mydomain> -tls1_3
CONNECTED(00000003)
write:errno=0
---
no peer certificate available
---
No client certificate CA names sent
---
SSL handshake has read 0 bytes and written 240 bytes
Verification: OK
---
New, (NONE), Cipher is (NONE)
Secure Renegotiation IS NOT supported
Compression: NONE
Expansion: NONE
No ALPN negotiated
Early data was not sent
Verify return code: 0 (ok)
---

ECS 后台安全组确认过没问题,443 端口全放

OS 部署的 AlmaLinux 9

Nginx 信息

]# nginx -V
nginx version: nginx/1.27.5
built by gcc 11.5.0 20240719 (Red Hat 11.5.0-5) (GCC) 
built with OpenSSL 3.2.2 4 Jun 2024
TLS SNI support enabled

有没有大佬有什么思路,指导一下~~