I just renewed my certificate on https://wemarsh.com/ . After I thought I had everything working I did some online SSL tests, just as a routine check that everything is configured properly. Some of them passed with no problem, but one had some problems related to the OCSP. I don't want to give too many configuration specifics for obvious reasons, but I am running Apache and have a Comodo multi-domain certificate.
Here are some snippets of my virtualhost configuration:
...
SSLUseStapling on
SSLStaplingResponderTimeout 5
SSLStaplingReturnResponderErrors off
SSLStaplingCache "shmcb:/var/run/ocsp(128000)"
...
<VirtualHost 50.116.58.63:443>
...
ServerName www.wemarsh.com
ServerAlias wemarsh.com
SSLEngine on
SSLCertificateFile PATH_TO_CERT.crt
SSLCertificateKeyFile PATH_TO_CERT.key
SSLCertificateChainFile PATH_TO_CERT.ca-bundle
...
</VirtualHost>
I ran https://www.ssllabs.com/ssltest . Under certification paths, it lists 2 paths. The first item on each has the following error:
OCSP ERROR: Request failed with OCSP status: 6
[http://ocsp.comodoca.com]
Under protocol details:
OCSP stapling Yes
What is the problem here? How can I fix these errors in the report?
Thanks.