You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by "njbrad@verizon.net" <nj...@verizon.net> on 2006/10/23 14:16:48 UTC

Re: AW: SVNListParentPath does not work in conjunction withAuthzSVNAccessFile

Another update.. I can't remember where I orginally got the info

<Location /svn_14/>
    DAV svn
    SVNListParentPath on
    SVNParentPath c:/svn_repository_14/
    <LimitExcept GET PROPFIND OPTIONS REPORT>
        AuthzSVNAccessFile c:/svn_repository_14/.svnaccess

	Satisfy any
        Require valid-user
        AuthType Basic
        AuthName "SubVersion Version Control 14"
        AuthUserFile c:/svn_repository_14/.htpasswd
    </LimitExcept>
</Location>

Brad


Original Message:
-----------------
From: Frank Gruman fgatwork@verizon.net
Date: Mon, 23 Oct 2006 08:21:26 -0500 (CDT)
To: Robert.Saenger@iitb.fraunhofer.de, NJBrad@Verizon.net,
users@subversion.tigris.org
Subject: Re: AW: SVNListParentPath does not work in conjunction
withAuthzSVNAccessFile


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


--------------------------------------------------------------------
mail2web - Check your email from the web at
http://mail2web.com/ .


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org