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

Re: Apache now hangs for any Subversion request - HELP!

From: Ben Collins-Sussman <sussman_at_collab.net>
Date: 2004-01-07 23:25:43 CET

On Wed, 2004-01-07 at 16:17, Charles E. Doucette wrote:

> <Location /repos>
> DAV svn
> SVNPath F:/SVN/repos
> AuthType Basic
> AuthName "MLC's Subversion repository"
> AuthUserFile "F:\SVN\passwd.ini"
> require valid-user
> </Location>

Is "passwd.ini" a normal file created by 'htpasswd', the one that
apache's basic auth module expects? I hope you didn't get confused and
use a mod_authz_svn authorization file in its place. Look at the
relevant example in the book, and notice that the authentication file is
specified by AuthUserFile (as usual), and the authorization file is
specified by AuthzSVNAccessFile. They're very different beasts.

<Location /svn/project>
  DAV svn
  SVNPath /usr/local/svn/project

  # how to authenticate a user
  AuthType Basic
  AuthName "Subversion repository"
  AuthUserFile /path/to/users/file

  # only authenticated users may access the repository
  Require valid-user

  # our access control policy
  AuthzSVNAccessFile /path/to/access/file

</Location>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Wed Jan 7 23:26: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.