|
|
||
Enabling Certificate Revocation List (CRL) in SSL
Certificate revocation provides the ability to revoke a client certificate given to the IHS server by the browser, if the key has been compromised, or if access permission to the key has been revoked. CRL is a database which contains a list of certificates that have been revoked before their scheduled expiration date. If you want to enable certificate revocation in IBM HTTP Server (IHS), place the CRL database on an LDAP server. Once the CRL database is placed on an LDAP server, you can use the IHS configuration file to access it. The CRL database is used to determine if a requested client certificate has been revoked. Directives Needed to Set up Certificate Revocation List (CRL):The SSLClientAuth directive can include two options at once. These options are:
The "crl" option, turns crl on and off inside an SSL virtual host. If you specify "crl" as an option then you have elected to turn crl on. If "crl" is not specified as an option, then crl remains off. If the first option for SSLClientAuth is 0/none, then you cannot use the second option, "crl". If client authentication is not on, then crl processing will not take place. Directives Supported in Global Server and Virtual HostThe following directives are supported in a global server and virtual host:
(Back to Top)
|