Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

response.c: set SSL_CLIENT_VERIFY & SSL_CLIENT_S_DN #63

Closed
wants to merge 1 commit into from

Commits on Jun 5, 2016

  1. response.c: set SSL_CLIENT_VERIFY & SSL_CLIENT_S_DN

    SSL_CLIENT_VERIFY is set to "NONE", "SUCCESS" or "FAILED:reason".
    This is compatible with Apache's mod_ssl variable of the same name.
    
    SSL_CLIENT_S_DN is set to the oneline version of the client certificate
    subject's distinguished name and may be used as a setting for the
    ssl.verifyclient.username config option.  When Apache's mod_ssl is
    configured to use 'FakeBasicAuth' it uses the SSL_CLIENT_S_DN value for
    the username (that ultimately may end up in REMOTE_USER).  The value
    that will be set for SSL_CLIENT_S_DN may be determined using the
    `openssl x509 -noout -subject -in <cert.pem>` command.
    
    Signed-off-by: Kyle J. McKay
    mackyle committed Jun 5, 2016
    Copy the full SHA
    bb9f62a View commit details
    Browse the repository at this point in the history