本文最后更新于714 天前,其中的信息可能已经过时,如有错误请发送邮件到3260245294@qq.com
错误信息
更改完 nginx 配置文件后进行测试,随即输出以下内容。
# nginx -t
nginx: [warn] "ssl_stapling" ignored, issuer certificate not found for certificate "/path/to/your/domain.crt"
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
该问题是因为某些 CA 没有被所有平台识别而导致的。
解决方法
你可以选择以下列表中的方法,但考虑到安全问题,推荐使用方法2。
- 关闭
ssl_stapling
- 指定 nginx 信任证书链 (包含 CA 等证书)
- 下载 CA 证书并添加至系统信任
以下为方法2的部分配置。
ssl_certificate /path/to/your/domain.crt;
ssl_trusted_certificate /path/to/your/domain-ca-bundle;
ssl_certificate_key /path/to/your/domain.key;