Last active
July 7, 2016 01:16
-
-
Save vicneanschi/66fdce533f39f9454ce07fb052e8bd9d to your computer and use it in GitHub Desktop.
apache
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| If you enable ssl in apache, you can verify a client certificate. | |
| If so apache will create a environment variable for you with the name 'SSL_CLIENT_VERIFY' with values 'NONE, SUCCESS, GENEROUS or FAILED:reason'. | |
| See https://httpd.apache.org/docs/2.0/mod/mod_ssl.html | |
| NONE: client has no cert | |
| SUCCESS = cert is valid | |
| GENEROUS = says only that some kind of certificate was sent at all | |
| FAILED:reason = auth with the cert failed | |
| SUCCESS is what you should look for |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # get apache version | |
| apachectl -V |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment