On Wed, November 29, 2006 1:59 pm, Plüm, Rüdiger, VF EITO wrote:

> I don't think so. I have the following configuration running successfully:
>
> <Location /somewhere>
>    Options None
>    AllowOverride None
>    DAV On
>    AuthName "Access for somewhere"
>    AuthType Basic
>    AuthUserFile /opt/apache-2.0.55/conf/transfer/passwd.manager
>
>    order allow,deny
>    allow from all
>    Satisfy all
>
>    Options none
>    ForceType application/octet-stream
>
>  <LimitExcept OPTIONS>
>    require user manager
>  </LimitExcept>
> </Location>
>
> <Location /somewhere/deeper/evendeeper>
>    AuthName "Access for evendeeper"
>
>  <LimitExcept OPTIONS>
>    require user manager somebodyelse
>  </LimitExcept>
> </Location>
>
> If I go to /somewhere/deeper/evendeeper I get the correct Realm presented
> in the browser.

Which version of httpd are you using?

In the case quoted above, both /somewhere and /somewhere/deeper/evendeeper
are using the same basic auth config - the difference being in authz
(require).

In my case, I am trying to define one basic auth config under / using
mod_authz_ldap, and a second completely separate and independent basic
auth config /bugzilla using mod_auth_ldap (note the different modules).
This doesn't want to work.

Regards,
Graham
--


Reply via email to