Re: openssl X509 certificate based client authentification svn svncpp
From: Martin v. Löwis <martin_at_v.loewis.de>
Date: 2003-06-21 13:07:16 CEST
"Serge Bakkal" <Serge.Bakkal@wanadoo.fr> writes:
> How would we integrate X509 certificate based client authentification (and
It's not provided in Subversion directly, but it works just fine with
SSLVerifyClient require # maybe you want to use "optional"
Notice that this must be a top-level directive, i.e. it doesn't work
You then need
SSLCACertificateFile /etc/httpd/ssl.crt/ca-bundle.crt
to list all the CAs whose certificates you trust.
For authorization in the repository, you need SSLRequire; we use
SLRequire %{SSL_CLIENT_I_DN} eq "/C=DE/L=Potsdam/O=Hasso-Plattner-Institut/OU=OSM/CN=HPI OSM Client Authentication CA" && \
Notice that with that approach, unfortunately, user names don't get
http://www.dcl.hpi.uni-potsdam.de/home/loewis/mod_ssl_user.c
Regards,
---------------------------------------------------------------------
|
This is an archived mail posted to the Subversion Dev mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.