[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

RE: Subversion Tools

From: Geoff Krapf <geoffk_at_softartisans.com>
Date: 2004-08-04 16:14:04 CEST

> 2) A windows program to let SVN users manage their own password or,
even better, a way to use the > user's domain login for SVN login. I'm
currently trying to get mod_auth_ldap working with Apache > but that's
an email for another list.

We use domain logins/passwords via mod_auth_sspi, directions for using
it are here:
http://tortoisesvn.tigris.org/docs/TortoiseSVN_en/help-onepage.html#tsvn
-serversetup-apache-5

Our config system is something like this, which gives our Developers
group write access and everyone else read access. I think our current
configuration is even more restrictive.

<Location /svn>
  DAV svn
  SVNPath C:\SVN
  
  # SSPI
  AuthType SSPI
  SSPIAuth On
  SSPIAuthoritative On
  SSPIDomain INT
  SSPIOfferBasic On
  
  Require valid-user
  <LimitExcept GET PROPFIND OPTIONS REPORT>
    Require group "DOMAIN\\Developers"
  </LimitExcept>
</Location>

I think (maybe) you can use mod_authz_svn to do the first thing
(restricting users by path).

Hope that helps!

- Geoff

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Wed Aug 4 16:13:38 2004

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.