我每两秒钟就会在日志文件中看到下面的记录。我在 centos 7 上使用 nginx。
2021/03/16 13:59:21 [error] 8904#8904: dvcasha2.ocsp-certum.com could not be resolved (110: Operation timed out) while requesting certificate status, responder: dvcasha2.ocsp-certum.com, certificate: "/etc/nginx/ssl.crt/bundle.crt"
我不知道这是什么。我应该担心吗?
答案1
您可能错过了 nginx 配置中的 DNS 解析器配置。
您可以尝试添加:
resolver <ns1> <ns2>;
在您的http
配置级别。<ns1>
和<ns2>
是您的名称服务器 IP 地址,您可以在中找到它们/etc/resolv.conf
。