我在 apache 上运行 NodeJS 应用程序并使用 mod_proxy 将 443 上的请求转发到 nodeJS 应用程序。
这在端口 80 上工作正常,但是当我尝试将其设置为端口 443 时,我在 apache 中收到以下错误:
[error] Server should be SSL-aware but has no certificate configured [Hint: SSLCertificateFile] ((null):0)
看来这个错误是因为我试图在 apache 中侦听端口 443 但没有提供 ssl 证书......但我不需要,因为我的 NodeJS 应用程序正在执行 SSL。
我怎样才能告诉 apache 忽略这个错误?