nginx: [warn] "ssl_stapling" ignored, issuer certificate not found for certificate的错误解决方法
出现nginx: [warn] "ssl_stapling" ignored, issuer certificate not found for certificate
错误
就是说你并没有指定CA证书,解决方法有两种,一种就是合并CA证书,格式如下
cat www_example_com.crt COMODORSADomainValidationSecureServerCA.crt COMODORSAAddTrustCA.crt
还有一种就是CA证书单独一个文件并指定CA证书的路径,如
1
2
#ssl_stapling_verify on; //关闭否则报错no ssl_client_certificate for ssl_verify_client
ssl_trusted_certificate /etc/secrets/COMODORSADomainCA;
systemctl status nginx
查看nginx有没有报错信息,如果没有则正常。
💘 相关文章
- nginx "ssl_stapling" ignored, issuer certificate not found for certificate解决方法
- nginx: [warn] "ssl_stapling" ignored, not supported告警
- nginx: [warn] "ssl_stapling" ignored, not supported error
- nginx配置时HTTPS出现"nginx: [warn] "ssl_stapling" ignored"的解决方法
- 比较简单实用高效的网站防止灌水和反爬虫方案
- debian 12安装pve出现/etc/pve/local/pve-ssl.key: failed to load错误的解决方法
- digitalocean開源nginx可視化配置工具,非常適合新手小白,支持漢化
- FreeBSD 安装PHP7.4 和 Nginx
- how to do config nginx allow's cloudflare ip's
- nginx禁止执行php脚本