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

Authorization question

From: Eli Barzilay <eli_at_barzilay.org>
Date: 2006-11-29 21:28:35 CET

I'm running a user repository, and there's some weird authorization
problem. I want to let people determine the control that they want,
so I have:

  <Location /usr>
    Dav svn
    SVNPath /home/svn/usr
    SVNAutoversioning on
    SVNIndexXSLT "/svnindex.xsl"
    Allow from all
    AuthType Digest
    AuthName "Subversion"
    AuthUserFile /home/svn/etc/passwd
    AuthDigestDomain /plt/ /iplt/ /iview/ /usr/ /play/
    AuthzSVNAccessFile /home/svn/etc/authz.conf
    Require valid-user
  </Location>

which works fine, until someone wants to make a directory
world-readable. So, I figure that I'll let the authz.conf be the only
guard for unwanted reads, and changed that last line to:

  <Location /usr>
    ...
    <LimitExcept GET PROPFIND OPTIONS REPORT>
      Require valid-user
    </LimitExcept>
  </Location>

The world-readable directory works fine, but now normal per-user
control doesn't work.

Is there anything wrong in the above setup?

-- 
          ((lambda (x) (x x)) (lambda (x) (x x)))          Eli Barzilay:
                  http://www.barzilay.org/                 Maze is Life!
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Wed Nov 29 21:35:56 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.