Some authorisation clarification

2006-11-29 Thread Graham Leggett
Hi all, I have been trying to get a simple AAA config to work in httpd v2.0, and the understanding that I get from reading the docs doesn't result in a working config. Basically I have a password protected URL space /, and a more specific differently protected URL space /bugzilla. No matter what

Re: Some authorisation clarification

2006-11-29 Thread Nick Kew
On Wed, 29 Nov 2006 10:46:20 +0200 (SAST) Graham Leggett [EMAIL PROTECTED] wrote: Basically I have a password protected URL space /, and a more specific differently protected URL space /bugzilla. No matter what config I try, it seems that the config for / always wins, and the config for

Re: Some authorisation clarification

2006-11-29 Thread Graham Leggett
On Wed, November 29, 2006 2:19 pm, Nick Kew wrote: When the configuration is merged, the one that appears later in httpd.conf overrides the other where there is conflict. What constitutes a conflict? What Satisfy value are you using? The config looks like this: # Password protect

Re: Some authorisation clarification

2006-11-29 Thread Joost de Heer
The config looks like this: # Password protect bugzilla with native LDAP plugin Location /bugzilla AuthType Basic AuthName User principal name AuthLDAPEnabled on AuthLDAPBindDN zzz AuthLDAPBindPassword zzz AuthLDAPURL

Re: Some authorisation clarification

2006-11-29 Thread Graham Leggett
On Wed, November 29, 2006 4:23 pm, Joost de Heer wrote: Untested (don't have an LDAP server at hand to test) : Create two aliases with AuthnProviderAlias, and use AuthBasicProvider with the alias names in the Location containers. AuthnProviderAlias is in httpd v2.2 as I understand, I am stuck

Re: Some authorisation clarification

2006-11-29 Thread Joshua Slive
On 11/29/06, Graham Leggett [EMAIL PROTECTED] wrote: On Wed, November 29, 2006 2:19 pm, Nick Kew wrote: When the configuration is merged, the one that appears later in httpd.conf overrides the other where there is conflict. What constitutes a conflict? What Satisfy value are you using?