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

SVN not working with Location-Inheritance ?!

From: wcronen <nabble.10.wcronen_at_spamgourmet.com>
Date: 2007-06-04 23:39:19 CEST

I have a good working svn repository which I can access using https.
This is the appropriate location section from the apache config.

<Location /svn/>
DAV svn
SVNListParentPath on
SVNParentPath /home/svn
SSLRequireSSL

AuthType Basic
AuthName "Subversion Repository"
AuthUserFile /etc/httpd/auth/dav_svn.passwd
AuthzSVNAccessFile /etc/httpd/auth/dav_svn.authz

Require valid-user
Satisfy all
</Location>

Now I want to change the Authz and Passwd file for one repository
under /svn. I call it /svn/test.

What I tried:
<Location /svn/test>
AuthName "TestRepository"
AuthUserFile /home/svn/test/conf/passwd
AuthzSVNAccessFile /home/svn/test/conf/authz
</Location>

The rest should be inherited from the section above.

But it doesn't work Sad

I get this error message:
svn: PROPFIND request failed on '/svn/test'
svn: PROPFIND of '/svn/test': 403 Forbidden

The error logs of apache say:
The URI does not contain the name of a repository. [403, #190001]

If I append an / to the location entry like: <Location /svn/test/>
I can access the repository in a webbrowser, but "svn list" still doesn't
work.

Any ideas how I can achieve my goal? Any help is appreciated.

-- 
View this message in context: http://www.nabble.com/SVN-not-working-with-Location-Inheritance--%21-tf3868155.html#a10959009
Sent from the Subversion Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Mon Jun 4 23:39:40 2007

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.