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

subversion with virtual hosts

From: Tom Hosiawa <tomek32_at_gmail.com>
Date: 2005-02-03 06:36:00 CET

After I changed that, the authenticated commits no longer work. They
worked before the change, so I'm using it has to do with the switch
from using SVNParentPath to SVNPath? I searched through the svn book,
but didn't find anything.

Here's my exact config

apache:
-------------
<IfDefine SVN>
        <IfModule !mod_dav_svn.c>
                LoadModule dav_svn_module extramodules/mod_dav_svn.so
        </IfModule>
        <IfModule !mod_authz_svn.c>
                LoadModule authz_svn_module extramodules/mod_authz_svn.so
        </IfModule>

        # public repository
        <Location />
                DAV svn
                SVNPath /srv/svn/phaosLeague

                # user authentication
                AuthType Basic
                AuthName "phaosLeague Repository"
                AuthUserFile /srv/svn/svn_passwd
                AuthzSVNAccessFile /srv/svn/svn_access

                # authentication for user commits
                <LimitExcept GET PROPFIND OPTIONS REPORT>
                        Require valid-user
                </LimitExcept>
        </Location>
</IfDefine>

svn_access:
---------------------
[groups]
phaosLeague-devs = tom, peter

# annoymous read access
[/]
* = r

# project access settings
[phaosLeague:/]
@phaosLeague-devs = rw

-- 
Tom
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Thu Feb 3 06:38:11 2005

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.