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

Setting correct access using Apache

From: Sean Brown <seanmichaelbrown_at_gmail.com>
Date: Thu, 29 May 2008 14:19:49 -0400

I got a bunch of Subversion repositories that I've serving using the
Apache. So far everything has been great. To date, I had it set up
to only allow authenticated users access to any of the repositories,
but once they were authenticated, they could do anything (i.e. both
read and write):

    <Location />
       DAV svn
       SVNParentPath /home/svn
       SVNListParentPath on
       SVNPathAuthz off
       AuthType Basic
       AuthName "Subversion Repository"
       AuthUserFile /etc/svnpasswd
       # only authenticated users may access the repository
       Require valid-user
    </Location>

I'd like to change it so that all users must be still be authenticated
(NO anonymous access), however, everything is now read only (GET,
PROPFIND, OPTIONS, and REPORT). How can I do that?

Sean

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: users-help_at_subversion.tigris.org
Received on 2008-05-29 20:20:16 CEST

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.