>>> On 2/16/2006 at 6:01:51 pm, in message <[EMAIL PROTECTED]>,
[EMAIL PROTECTED] wrote:
> Had some problems getting a working auth config to let me spend time
> developing on svn's authz module - when I tried 2.2 the exact same
> config worked without a problem first time out of the box.
>
> Houston, I think trunk's auth code is fubar.
>
> Config is as follows,
>
> <Location "/repos">
> DAV svn
> SVNParentPath "/home/david/repos"
>
> AuthzSVNAccessFile /usr/local/apache2/conf/svn_access
>
> AuthType Basic
> AuthName "Subversion repository"
> AuthUserFile /usr/local/apache2/conf/svn_users
> Satisfy any
>
> <LimitExcept GET OPTIONS PROPFIND REPORT>
> Require valid-user
> </LimitExcept>
> </Location>
>
> Simple GET requests result in a password dialog! with a higher level
of
> output I see that the initial GET request is returned as OK, but it
> moves onto asking for a password anyways.
>
> davi
I can't speak for what is going on with svn's authz but the following
configuration works as expected:
<Location /secure>
AuthType Basic
AuthName Protected_Place
AuthUserFile conf/user.pwd
Satisfy Any
<LimitExcept GET OPTIONS PROPFIND REPORT>
Require valid-user
</LimitExcept>
</Location>
Of course with mod_access_compat loaded.
Brad