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

Much progress (was rusty razorblade - part 2)

From: Mike Dewhirst <miked_at_dewhirst.com.au>
Date: 2005-03-10 02:59:01 CET

Thanks to Sean and others - I am nearly there. I'm new to Linux and svn so
please bear with me.

Here is a portion of etc/apache2/subversion.conf which IS working :) with
an embedded tag showing where it can be made to fail ...

# <working>
<Location /repos>
    DAV svn
    SVNParentPath /srv/svn/repos

    # <fails>
    # our access control policy
    # AuthzSVNAccessFile /srv/svn/user_access/access-policy
    # </fails>

    #<moved from LimitExcept>
    AuthType Basic
    AuthName "repositories"
    AuthUserFile /srv/svn/user_access/auth-file
    # only authenticated users access repositories
    Require valid-user
    #</moved from LimitExcept>

    # move 'Require valid-user' to here
    # to provide public read only access
    # and require a valid user for GET etc below
    <LimitExcept GET PROPFIND OPTIONS REPORT>
       #
    </LimitExcept>
</Location>
# </works>

When AuthzSVNAccessFile is un-commented userid's and passwords stop being
recognised. Here is the content of the above AuthzSVNAccessFile ...

# groups and access policy
[groups]
testing = miked
everyone = miked, rob

[testing:/repos/testing]
@testing = rw
@everyone = r
#eof

Any ideas ??

TIA very much

Mike

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Thu Mar 10 03:02:38 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.