Re: What's in a URL ?

2005-12-04 Thread Gregory (Grisha) Trubetskoy
On Sat, 3 Dec 2005, Nicolas Lehuen wrote: 2. I don't know - I did not made this to distribute It's a _very_ nice document, but I think you jumped the gun by checking it into Doc because it's not a .tex file and doesn't fit into the Mod_python manual, which is what the Doc directory is for.

Re: What do you want in HTTPD 2.4/3.0/X/GREEN?

2005-12-04 Thread Joost de Heer
This applies to processes forked off from Apache children servicing requests, not the Apache children themselves. So not exactly what I proposed, unless I am understanding that wrong? If you want to limit the children themselves, then you want the standard ulimit controls available in your

Re: What do you want in HTTPD 2.4/3.0/X/GREEN?

2005-12-04 Thread Justin Erenkrantz
On Sun, Dec 04, 2005 at 10:30:34AM +0100, Joost de Heer wrote: This applies to processes forked off from Apache children servicing requests, not the Apache children themselves. So not exactly what I proposed, unless I am understanding that wrong? If you want to limit the children

Re: What do you want in HTTPD 2.4/3.0/X/GREEN?

2005-12-04 Thread Alexander Lazic
Hi, On Sam 03.12.2005 11:36, Paul Querna wrote: My intention is for this to be a wide open brainstorming thread. I expect that we will be able to discuss several ideas in much more detail at the Hackathon next week, but I really want to get all ideas 'on the table'. my whish is very simple:

Re: What do you want in HTTPD 2.4/3.0/X/GREEN?

2005-12-04 Thread Olaf van der Spek
On 12/4/05, Ian Holsman [EMAIL PROTECTED] wrote: Garrett Rooney wrote: On 12/3/05, Ian Holsman [EMAIL PROTECTED] wrote: I'd also like to brainstorm a better solution to running Rails/Django applications inside of the httpd process than the SCGI/FastCGI solution which most people use.

Re: What do you want in HTTPD 2.4/3.0/X/GREEN?

2005-12-04 Thread Matthieu Estrade
Paul Querna wrote: My intention is for this to be a wide open brainstorming thread. I expect that we will be able to discuss several ideas in much more detail at the Hackathon next week, but I really want to get all ideas 'on the table'. I have a few things I would like to see, but I am

Re: mod_proxy error, segmentation fault

2005-12-04 Thread Christophe Yayon
Christophe Yayon wrote: Hi, Here is my configuration : VirtualHost * ServerName portail.polen.xxx.fr CustomLog /var/log/apache21/access-portail.log combined Location / Order deny,allow Allow from all /Location RewriteEngine

Re: What do you want in HTTPD 2.4/3.0/X/GREEN?

2005-12-04 Thread Maxime Petazzoni
Hi, * Jim Jagielski [EMAIL PROTECTED] [2005-12-03 14:56:22]: * A Perchild MPM/replacement: The SoC perchild-replacement project didn't work out. We have a basic design that is sound, but we need to actually write the code. +1 as a VERY useful thing for 2.2/2.4 I would like to

Re: mod_proxy error, segmentation fault

2005-12-04 Thread Joost de Heer
RewriteRule (.*) http://uxdev14.sofinco.fr:8080%{REQUEST_URI}; [P,L] Try without the around the second argument? Joost

Re: httpd 2.2 missing as product in bugzilla

2005-12-04 Thread Sander Temme
On Dec 4, 2005, at 3:32 PM, William A. Rowe, Jr. wrote: I don't know, but RoUS should. They are his cron activities. Actually, RoUS sends the STATUS files around on Wednesday. The Bugzilla cron reports are mine, were indeed broken by the name change, and are fixed for next week. I

Event MPM: Spinning on cleanups?

2005-12-04 Thread Paul Querna
I finally got around to upgrading to trunk w/ the Event MPM on one of my machines. Within a couple hours of starting it, I had a process spinning, and consuming 100% CPU. Backtrace from the spinning thread: (gdb) thread 6 [Switching to thread 6 (Thread 0x2045 (LWP 100189))]#0

Re: Event MPM: Spinning on cleanups?

2005-12-04 Thread William A. Rowe, Jr.
Paul Querna wrote: Best guess is that we corrupted a bucket brigade by double freeing it, or something of that kind. This is definitely a new behavior since the async-write code was merged into trunk. It is odd that we could of double-free'ed something on the connection pool. Maybe it isn't a

windows binaries

2005-12-04 Thread Stanley W
When the Apache 2.2.0 binaries for Windows will be available for download? Stanley

making SSL connection in Apache 2.0

2005-12-04 Thread Lai Yiu Fai
I would like to write a module which requires to make outgoing SSL connection and read the response. Which set of function calls should I use to make it with best portability in both prefork and thread MPM? Would it be a problem if I use direct OpenSSL calls? Or mod_ssl provide these functions