In my virtual host I have something like that:
SSLEngine on
SSLCertificateKeyFile /etc/apache2/ssl/svn.XXXXX.me.key
SSLCertificateFile /etc/apache2/ssl/svn.XXXXX.me.crt
SSLProtocol all
SSLCipherSuite HIGH:MEDIUM
SSLVerifyClient require
SSLCACertificateFile /etc/ssl/certs/ICA-Standart.0
So far, I can use any certificate issued by CA "ICA-Standart.0" to log in, but I would like to specify kind of white list and only some certificates will be allowed to log in, is that possible?
If so, which directive should I look?
Also please note the CA is a public certification authority.
You need to use the
Further reference can be found in the Apache documentation.SSL_CLIENT_S_*
directives: