RE: Adding Users and SSL
From: Adrian Marsh <Adrian.Marsh_at_ubiquisys.com>
Date: Wed, 16 Apr 2008 12:37:09 +0100
Mark,
I've just taught myself the same thing in the past week, but added LDAP
http://opensourcedevelopment.net/text-tutorials/apache-subversion-active
But to answer your questions, the SSL and authentication are two
If you want to specify specific users, you can either do that by
In any case, no passwords are stored cleartext..
Heres snippets of my setup:
Httpd.conf : added this line as I have my own SSL CA:
LDAPTrustedGlobalCert CA_BASE64 /tmp/base64.cer
Ssl.conf: I added this to the default virtualhost
<Location "/svn">
AuthBasicProvider ldap
DAV svn
SVNParentPath /home/SVN
SVNIndexXSLT "/svnindex.xsl"
AuthType Basic
AuthzLDAPAuthoritative off
AuthName "Subversion"
AuthLDAPURL
AuthLDAPBindDN
AuthLDAPBindPassword ******
#<LimitExcept GET PROPFIND OPTIONS REPORT>
Require valid-user
#</LimitExcept>
AuthzSVNAccessFile /tmp/svntest
</Location>
The AuthBasicProvider line dictates the LDAP setup, and you can ignore
Then it uses AuthzSVNAccessFile to specify who can access which
A lot of combinations are possible.
Adrian
________________________________
From: Mark Nowhere [mailto:markwod_at_yahoo.co.uk]
Hi all,
I've got it running ok (Windows) with apache 2.0. All seems ok, what I'm
http://better-scm.berlios.de/subversion/Svn-Win32-Inst-Guide.html
If there are any tutorials re: this please can you let me know.
Thanks
Mark
________________________________
Yahoo! for Good helps you make a difference
|
This is an archived mail posted to the Subversion Users mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.