Just recently I found out a server can use a certification to check if a client is who they say they are. I know how to sign and enable server certifications but how do i have the server check if the client certification is valid on apache?
Tell me more
×
Server Fault is a question and answer site for
professional system and network administrators. It's 100% free, no registration required.
|
I hate just linking an article, but is this what your looking for? http://it.toolbox.com/blogs/securitymonkey/howto-securing-a-website-with-client-ssl-certificates-11500 |
|||
|
|
|
These are the main configuration entries that you are looking for:
You need to specify what root CAs you trust by setting the appropriate CA certs. If you are using it in-house, you can become your own root CA and use that to issue client certs to your browsers. Otherwise, you will need to use a valid CA root cert (they're typically bundled or you can download them). Once that is done, you will have an extra environment variable when a verified client connects called |
|||
|
|