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

Re: ra_dav/log and mod_authz_svn

From: Marcus Rueckert <darix_at_web.de>
Date: 2005-03-07 15:41:43 CET

On 2005-03-07 12:45:25 +0000, Chia-liang Kao wrote:
> If I configure have the following configuration:
> Apache:
> AuthType Basic
> AuthzSVNAccessFile /path/to/svnpolicy
> Satisfy any
> Require valid-user
>
> /path/to/svnpolicy:
> [/]
> * = rw
> [/private]
> foo = rw
> * =
>

i would use the LimitExcempt there:
<Location /repos/myproject1>
   DAV svn
   SVNPath /srv/svn/repos/myproject1

   # Limit write permission to list of valid users.
   <LimitExcept GET PROPFIND OPTIONS REPORT>
      # Require SSL connection for password protection.
      # SSLRequireSSL

      AuthType Basic
      AuthName "Authorization Realm"
      AuthUserFile /srv/svn/user_access/myproject1_passwdfile
      Require valid-user
   </LimitExcept>
</Location>

this should work

darix

-- 
irssi - the client of the smart and beautiful people
              http://www.irssi.de/
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Mon Mar 7 15:42:54 2005

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.