[users@httpd] Status of mod_psgi?

2016-02-19 Thread Tom Browder
Does anyone here use mod_psgi? I hear it discussed a bit in the Perl community in the context of Catalyst, Dancer2, etc., but the repo on github doesn't look active. I have just sent a message to the repo owner (j...@cpan.org), but I wanted to check here also. Thanks. Best regards, -Tom

RE: [users@httpd] Apache Dual Certificate Error

2016-02-19 Thread Jason -
I have now closed my server. But please help me... From: winpackja...@outlook.com To: users@httpd.apache.org Date: Fri, 19 Feb 2016 21:51:56 +0200 Subject: [users@httpd] Apache Dual Certificate Error Hi, I am Jason! Can anyone please help me resolve my weird Apache error here:

[users@httpd] Apache Dual Certificate Error

2016-02-19 Thread Jason -
Hi, I am Jason! Can anyone please help me resolve my weird Apache error here: http://serverfault.com/questions/758482/apache-extension-error?

[users@httpd] Backend server ask frequently for username and password

2016-02-19 Thread spady7
Hi all, i'am using apache2 v. 2.4.10 as reverse proxy. Everything works great except for last "location", inside a existent virtual host, i've added Client side connect, after i gave username and password. It loads pages. Then, when i click on some buttons that redirects on desired feature,

Re: [users@httpd] Howto accept only one connection

2016-02-19 Thread Oliver Graute
On 19/02/16, Christopher Schultz wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Oliver, > > On 2/19/16 10:11 AM, Oliver Graute wrote: > > On 19/02/16, Aurélien Terrestris wrote: > >> Hello, > >> > >> I'm not sure we can accept only one connection at a given time. I > >> tested

Re: [users@httpd] Howto accept only one connection

2016-02-19 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Oliver, On 2/19/16 10:11 AM, Oliver Graute wrote: > On 19/02/16, Aurélien Terrestris wrote: >> Hello, >> >> I'm not sure we can accept only one connection at a given time. I >> tested with the "prefork MPM", and I only achieve 1 concurrent >>

Re: [users@httpd] Howto accept only one connection

2016-02-19 Thread Oliver Graute
On 19/02/16, Aurélien Terrestris wrote: > Hello, > > I'm not sure we can accept only one connection at a given time. > I tested with the "prefork MPM", and I only achieve 1 concurrent request > being processed at a given time and all others requests are buffered > (ListenBackLog doesn't seem to

Re: [users@httpd] Howto accept only one connection

2016-02-19 Thread Oliver Graute
On 19/02/16, Richard wrote: > > > > Date: Friday, February 19, 2016 13:32:02 +0100 > > From: Oliver Graute > > > > On 19/02/16, Jim Jagielski wrote: > >> Just one connection? By that do you mean one concurrent user or > >> actually one request or actually one

Re: [users@httpd] Howto accept only one connection

2016-02-19 Thread Aurélien Terrestris
Jim, -X stops with a seg-fault after servicing the request, at least on my server. I suppose that we need to keep the server alive. 2016-02-19 14:02 GMT+01:00 Dr James Smith : > Can you not just go into debug mode -X? > > > > On 19/02/2016 12:52, Aurélien Terrestris

Re: [users@httpd] Howto accept only one connection

2016-02-19 Thread Yann Ylavic
On Fri, Feb 19, 2016 at 1:32 PM, Oliver Graute wrote: > > my requirement is: > > "The Apache server listens on port 443i (https). It must accept only one > connection at a time on this port" > > so its one socket opened between the client and the server. I guess

Re: [users@httpd] Howto accept only one connection

2016-02-19 Thread Dr James Smith
Can you not just go into debug mode -X? On 19/02/2016 12:52, Aurélien Terrestris wrote: Richard, is this a config that you tried successfully ? On my server, "prefork MPM" will put requests in the backlog (waiting), and "event MPM" is not designed for such behaviours because of its

Re: [users@httpd] Howto accept only one connection

2016-02-19 Thread Jim Jagielski
Yeah... No idea why anyone in the world would do this though... > On Feb 19, 2016, at 7:46 AM, Richard > wrote: > > > >> Date: Friday, February 19, 2016 13:32:02 +0100 >> From: Oliver Graute >> >> On 19/02/16, Jim Jagielski

Re: [users@httpd] Howto accept only one connection

2016-02-19 Thread Aurélien Terrestris
Richard, is this a config that you tried successfully ? On my server, "prefork MPM" will put requests in the backlog (waiting), and "event MPM" is not designed for such behaviours because of its multi-threading model (I did not try "hybrid MPM" since it is supposed to be multi-threaded as well)

Re: [users@httpd] Howto accept only one connection

2016-02-19 Thread Richard
> Date: Friday, February 19, 2016 13:32:02 +0100 > From: Oliver Graute > > On 19/02/16, Jim Jagielski wrote: >> Just one connection? By that do you mean one concurrent user or >> actually one request or actually one connection? >> >> A connection is a socket opened

Re: [users@httpd] Howto accept only one connection

2016-02-19 Thread Aurélien Terrestris
Hello, I'm not sure we can accept only one connection at a given time. I tested with the "prefork MPM", and I only achieve 1 concurrent request being processed at a given time and all others requests are buffered (ListenBackLog doesn't seem to work on my server). Once the 1st request has been

Re: [users@httpd] Howto accept only one connection

2016-02-19 Thread Oliver Graute
On 19/02/16, Jim Jagielski wrote: > Just one connection? By that do you mean one concurrent user or > actually one request or actually one connection? > > A connection is a socket opened between the client and the server. > A request is a HTTP request on that connection. my requirement is:

Re: [users@httpd] Howto accept only one connection

2016-02-19 Thread Jim Jagielski
Just one connection? By that do you mean one concurrent user or actually one request or actually one connection? A connection is a socket opened between the client and the server. A request is a HTTP request on that connection. tia. > On Feb 19, 2016, at 2:50 AM, Oliver Graute