mod_auth_referer

2002-05-03 Thread Rose, Billy
Here is my initial beta release of the mod_auth_referer module. I'll be hosting it on my site soon as a 3rd party module. Any comments are welcome. Billy Rose [EMAIL PROTECTED] mod_auth_referer.c Description: Binary data

mod_auth_referer

2002-05-01 Thread Rose, Billy
Could someone please take a look at this module and see if it would benefit Apache 2? It authenticates based on HTTP referer. It doesn't authenticate requests ending in / as that is for the indexing to decide on. Also, any pointers are warmly welcome. .conf file directives: AuthReferer

RE: mod_auth_referer

2002-05-01 Thread Rose, Billy
from a more general base. Billy Rose [EMAIL PROTECTED] -Original Message- From: Joshua Slive [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 12:21 PM To: [EMAIL PROTECTED] Subject: Re: mod_auth_referer On Wed, 1 May 2002, Rose, Billy wrote: Could someone please

RE: mod_auth_referer

2002-05-01 Thread Rose, Billy
, 1 May 2002, Rose, Billy wrote: Performance, and functional separation. No environment variables are created/referenced. It is obvious to a web admin (average Joe) what mod_auth_referer does, but not so obvious what SetEnvIf does in relation to specific needs. This makes a specific

RE: mod_auth_referer

2002-05-01 Thread Rose, Billy
: Wednesday, May 01, 2002 3:23 PM To: '[EMAIL PROTECTED]' Subject: RE: mod_auth_referer On Wed, 1 May 2002, Rose, Billy wrote: Therein lies the beauty of the configure script. IMHO an (average) admin would rather add a few simple readable directives as opposed to learning a pseudo

FYI, Linux threads - possible concern

2002-04-29 Thread Rose, Billy
FYI, I found this on the MySQL web site: The STACK_SIZE constant in LinuxThreads controls the spacing of thread stacks in the address space. It needs to be large enough so that there will be plenty of room for the stack of each individual thread, but small enough to keep the stack of some thread

RE: [PATCH] Possible fix for worker MPM performance problem (Updated patch)

2002-04-26 Thread Rose, Billy
As per a previous email, I was going to create a new MPM that had a dispatcher sitting between the listener and the workers that would handle all of the queueing problems via signaling. I will have to defer that project at present due to workload at my job. However, in the current discussion on

RE: cvs commit: httpd-2.0/server/mpm/worker worker.c

2002-04-18 Thread Rose, Billy
-Original Message- From: Brian Pane [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 17, 2002 7:48 PM To: [EMAIL PROTECTED] Subject: Re: cvs commit: httpd-2.0/server/mpm/worker worker.c Rose, Billy wrote: If I could receive feedback on the following email made on the 11th

RE: cvs commit: httpd-2.0/server/mpm/worker worker.c

2002-04-18 Thread Rose, Billy
: Wednesday, April 17, 2002 3:19 PM To: [EMAIL PROTECTED] Subject: Re: cvs commit: httpd-2.0/server/mpm/worker worker.c On Wed, Apr 17, 2002 at 02:58:03PM -0500, Rose, Billy wrote: If I could receive feedback on the following email made on the 11th, I'd be willing to burn some hours to make

RE: cvs commit: httpd-2.0/server/mpm/worker worker.c

2002-04-18 Thread Rose, Billy
Striker [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 18, 2002 9:00 AM To: [EMAIL PROTECTED] Cc: Billy Rose Subject: RE: cvs commit: httpd-2.0/server/mpm/worker worker.c From: Rose, Billy [mailto:[EMAIL PROTECTED]] Sent: 18 April 2002 15:47 Hummm. What are your thoughts on shmget

RE: [PATCH] convert worker MPM to leader/followers design

2002-04-11 Thread Rose, Billy
2:49 PM To: [EMAIL PROTECTED] Subject: Re: [PATCH] convert worker MPM to leader/followers design Rose, Billy wrote: Would the solution in my last email do what you are looking for? My one concern with your solution is that it puts a queue in the httpd child processes. I think

RE: [PATCH] convert worker MPM to leader/followers design

2002-04-10 Thread Rose, Billy
How about this: the listener has a FIFO for queuing incoming requests (size set via .conf file, some default, or perhaps memory available). A Master thread maintains a linked list of all children and threads therein. The Master sleeps waiting on a signal from the Listener. The Listener simply