Re: [users@httpd] Apache authentication - require group AND (not OR) user

2012-09-07 Thread Ben Johnson
On 8/23/2012 1:12 PM, Ben Johnson wrote: > > > On 8/22/2012 3:48 PM, Ben Johnson wrote: >> >> >> On 8/22/2012 2:39 PM, Eric Covener wrote: http://www.svnforum.org/threads/37237-AuthzSVNAccessFile-Require-ldap-group >>> >>> That thread predates the authorization containers from 2.4 recommen

Re: [users@httpd] Apache authentication - require group AND (not OR) user

2012-08-23 Thread Ben Johnson
On 8/22/2012 3:48 PM, Ben Johnson wrote: > > > On 8/22/2012 2:39 PM, Eric Covener wrote: >>> http://www.svnforum.org/threads/37237-AuthzSVNAccessFile-Require-ldap-group >> >> That thread predates the authorization containers from 2.4 recommended >> in this thread. Maybe there are plans for Au

Re: [users@httpd] Apache authentication - require group AND (not OR) user

2012-08-22 Thread Ben Johnson
On 8/22/2012 2:39 PM, Eric Covener wrote: >> http://www.svnforum.org/threads/37237-AuthzSVNAccessFile-Require-ldap-group > > That thread predates the authorization containers from 2.4 recommended > in this thread. Maybe there are plans for AuthzSVN to interoperate, > or maybe it already does.

Re: [users@httpd] Apache authentication - require group AND (not OR) user

2012-08-22 Thread Eric Covener
> http://www.svnforum.org/threads/37237-AuthzSVNAccessFile-Require-ldap-group That thread predates the authorization containers from 2.4 recommended in this thread. Maybe there are plans for AuthzSVN to interoperate, or maybe it already does.

Re: [users@httpd] Apache authentication - require group AND (not OR) user

2012-08-22 Thread Ben Johnson
On 8/16/2012 11:28 AM, Ben Johnson wrote: > > >> On 8/15/2012 7:45 AM, Rainer Jung wrote: >> You might be looking for the RequireAny and RequireAll container >> directives: >> >> http://httpd.apache.org/docs/2.4/en/mod/mod_authz_core.html#requireall >> >> See also >> >> httpd.apache.org/docs/2.

Re: [users@httpd] Apache authentication - require group AND (not OR) user

2012-08-16 Thread Ben Johnson
On 8/15/2012 7:45 AM, Rainer Jung wrote: > On 14.08.2012 23:30, Ben Johnson wrote: >> Hello, >> >> I've scoured the Internet for examples of how to implement logical >> operators where the "require" directive is concerned. >> >> The dearth of documentation and discussion regarding this subject le

Re: [users@httpd] Apache authentication - require group AND (not OR) user

2012-08-15 Thread Ben Johnson
On 8/14/2012 6:14 PM, hu...@sonic.net wrote: > You can have multiple 'require' lines to allow multiple groups and/or > users. So > > require group programmers > require group secretaries > require user joe > > "Require"s are OR-ed together, so anyone meeting a single criteria will > get allowed

Re: [users@httpd] Apache authentication - require group AND (not OR) user

2012-08-15 Thread Rainer Jung
On 14.08.2012 23:30, Ben Johnson wrote: Hello, I've scoured the Internet for examples of how to implement logical operators where the "require" directive is concerned. The dearth of documentation and discussion regarding this subject leads me to believe that it has not been implemented, or was

Re: [users@httpd] Apache authentication - require group AND (not OR) user

2012-08-14 Thread hughw
You can have multiple 'require' lines to allow multiple groups and/or users. So require group programmers require group secretaries require user joe "Require"s are OR-ed together, so anyone meeting a single criteria will get allowed in, provided they enter the correct password of course. So

[users@httpd] Apache authentication - require group AND (not OR) user

2012-08-14 Thread Ben Johnson
Hello, I've scoured the Internet for examples of how to implement logical operators where the "require" directive is concerned. The dearth of documentation and discussion regarding this subject leads me to believe that it has not been implemented, or was implemented at one time and then removed.