On Sat, Feb 14, 2015 at 3:18 AM, silvioprog wrote:
[...]
>
> I came up with a question: how can I configure the FastCGI to accept more
> than one request per connection? Is it possible in proxy mode?! ...
>
I'm using Apache24 to debug the draft app, and today I've seen the
following information o
And it work fine in nginx too (it is very fast =o ), using this
configuration:
upstream fastcgi_backend {
server 127.0.0.1:8080;
keepalive 8;
}
location /test {
fastcgi_pass fastcgi_backend;
fastcgi_keep_conn on;
...
}
Loading time: 4 ms
On Sun, Feb 15, 2015 at 1:30 AM,