I have a web service and am configured to check client certificates
SSLCACertificateFile /xxxx/rootca-cert.pem
<Location /manage/ccc>
SSLVerifyClient require
SSLVerifyDepth 1
SSLOptions +StdEnvVars
</Location>
My clients work with certificates signed by this rootca-cert.pem.
My problem is that the rootca file will end soon, and it's not easy for me to renew the client-side certificates. Is it possible to configure apache so that it continues to verify client certificates, but ignores the fact that both cortical and client certificates have expired?
source
share