
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 error
- nginx: [warn] "ssl_stapling" ignored, not supported告警
- nginx配置时HTTPS出现"nginx: [warn] "ssl_stapling" ignored"的解决方法
- nginx: [emerg] unknown directive "set_real_ip_from"的解决方法
- 重新编译nginx,以便支持最新的quic(http3)以及 brotli 压缩
- 使用301实现域名跳转到www包括https的3种方法
- 在ARM服务器中基于ubuntu系统一键架设nginx quic http3环境
- nginx: [emerg] Solution to unknown directive "set_real_ip_from"
- nginx反向代理配置演示,包括静态资源处理,百分百成功