RE: negative LocationMatch syntax?

2001-04-16 Thread Geoffrey Young
-Original Message- From: Matt Sergeant [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 12, 2001 2:00 PM To: [EMAIL PROTECTED] Cc: modperl; modssl Subject: Re: negative LocationMatch syntax? [snip] Is there a way I could use LocationMatch to specify a not condition

negative LocationMatch syntax?

2001-04-12 Thread Paul
Hi all. I need to leave a few areas of our site freely accessible, but most of the site is restricted, and I'd like the default behavior to be restrictive. I don't want to have to remember to change the config if I add new directories, as in adding Location SSLVerifyClient require /Location Is

Re: negative LocationMatch syntax?

2001-04-12 Thread Perrin Harkins
Matt Sergeant wrote: Is there a way I could use LocationMatch to specify a not condition? as in LocationMatch !~ "/(thisfile|thatDir|whatever).*" SSLVerifyClient require /LocationMatch That would let me list the exceptions, and everything else would be restricted by default..

Re: negative LocationMatch syntax?

2001-04-12 Thread Matt Sergeant
On Thu, 12 Apr 2001, Perrin Harkins wrote: Matt Sergeant wrote: Is there a way I could use LocationMatch to specify a not condition? as in LocationMatch !~ "/(thisfile|thatDir|whatever).*" SSLVerifyClient require /LocationMatch That would let me list the exceptions, and

Re: negative LocationMatch syntax?

2001-04-12 Thread Matt Sergeant
On Thu, 12 Apr 2001, Paul wrote: Hi all. I need to leave a few areas of our site freely accessible, but most of the site is restricted, and I'd like the default behavior to be restrictive. I don't want to have to remember to change the config if I add new directories, as in adding