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

Re: AW: SVNListParentPath does not work in conjunction with AuthzSVNAccessFile

From: Frank Gruman <fgatwork_at_verizon.net>
Date: 2006-10-23 15:21:26 CEST

Robert Saenger wrote:
> Please find below our <Location ...> section.
>
>
> <Location /svn>
> DAV svn
> SVNListParentPath on
> SVNParentPath D:\repos\svn
> SSLRequireSSL
> AuthType Basic
> AuthName "Subversion Projectarchives"
> AuthUserFile D:\repos\svn\passwd
> AuthzSVNAccessFile D:\repos\svn\svnaccessfile
> Require valid-user
> </Location>
>
>

Well - this could be easier - you may need to define the index file. Here is my working <Location> directive. Make sure the path you give to the svinindex.xsl file is relative to the server document root. I use LDAP auth for a couple of different apps I host on this server, so just make one LDAP reference. Then I only needed to type it all in once.

<Location /code/>
  DAV svn
  SVNParentPath /code_repos
  SVNIndexXSLT /svnindex.xsl
  SVNListParentPath on
  AuthName "Code Repository"
  Include /code_repos/ldap_auth
  AuthzSVNAccessFile /code_repos/access.list
  satisfy all
  require valid-user

</Location>

Regards,
Frank

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Mon Oct 23 15:22:19 2006

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.