diff options
author | mjl <mjl> | 2000-05-03 16:40:34 +0000 |
---|---|---|
committer | mjl <mjl> | 2000-05-03 16:40:34 +0000 |
commit | 93bad26a0a89e7dae91bfd84b590ec5d3e692f3b (patch) | |
tree | c1a21ccadfaa382d5aa0210fc2778605edce593c /www | |
parent | 2a4866390cd45cc29b3ff6a963202430992bfc27 (diff) | |
download | pkgsrc-93bad26a0a89e7dae91bfd84b590ec5d3e692f3b.tar.gz |
Updated to mod_fastcgi 2.2.2. Changes include:
*) Added support for blocking connect()s by setting appConnTimeout to 0.
Non-blocking connect()s (the default) can be troublesome on some platforms.
*) Wrap the SIGPIPE handler manipulation code such that it is only applicable
to Apache releases prior to 1.3.6.
*) Minor tweaks for RUSSIAN_APACHE.
*) Dynamic updates:
Always restart a failed dynamic application if it is the last instance.
This means there once started there will always be at least one process
instance of a dynamic application.
Send PLEASE_START to the PM when a connect() results in an ECONNREFUSED.
ECONNREFUSED means the listen queue is full (or there isn't one). Asking
the PM to start (another) application instance may help empty it faster.
Change two sleep() calls to select() based snoozes because alarm() is in
effect and sleep() and alarm() don't always play nice together.
*) Fix -listen-queue-depth arg on FastCgiConfig (dynamic). Previously it
was ignored and the default was always used.
*) Allow the -initial-env argument to be used to pass variables from the
Apache process environment to the FastCGI server (by specifying a
variable name without the "=" or a value).
*) Improved script stderr handling.
*) Changed the default listen-queue-depth (FCGI_DEFAULT_LISTEN_Q) from
5 to 100. Its still configurable with the -listen-queue-depth option.
*) Fix a bug in FastCgiExternalServer that broke support for external servers
on other hosts.
Diffstat (limited to 'www')
-rw-r--r-- | www/ap-fastcgi/Makefile | 8 | ||||
-rw-r--r-- | www/ap-fastcgi/files/md5 | 4 | ||||
-rw-r--r-- | www/ap-fastcgi/pkg/MESSAGE | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/www/ap-fastcgi/Makefile b/www/ap-fastcgi/Makefile index b426a0e4cf5..12095fe9bc1 100644 --- a/www/ap-fastcgi/Makefile +++ b/www/ap-fastcgi/Makefile @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.9 1999/11/21 22:12:58 tron Exp $ +# $NetBSD: Makefile,v 1.10 2000/05/03 16:40:34 mjl Exp $ # -DISTNAME= mod_fastcgi_2.2.1 -PKGNAME= ap-fastcgi-2.2.1 +DISTNAME= mod_fastcgi_2.2.2 +PKGNAME= ap-fastcgi-2.2.2 CATEGORIES= www -MASTER_SITES= http://fastcgi.idle.com/dist/ +MASTER_SITES= http://www.fastcgi.com/dist/ MAINTAINER= tv@netbsd.org HOMEPAGE= http://www.fastcgi.com/ diff --git a/www/ap-fastcgi/files/md5 b/www/ap-fastcgi/files/md5 index 25a9a3074a1..911345bfdd4 100644 --- a/www/ap-fastcgi/files/md5 +++ b/www/ap-fastcgi/files/md5 @@ -1,3 +1,3 @@ -$NetBSD: md5,v 1.3 1999/05/13 14:59:43 tv Exp $ +$NetBSD: md5,v 1.4 2000/05/03 16:40:34 mjl Exp $ -MD5 (mod_fastcgi_2.2.1.tar.gz) = f6af401769cdd2ef5a30bcd9d8a037ac +MD5 (mod_fastcgi_2.2.2.tar.gz) = a1f2503cb43314b3583276c13a93cf0e diff --git a/www/ap-fastcgi/pkg/MESSAGE b/www/ap-fastcgi/pkg/MESSAGE index ed48aa8c86b..41f289ec49f 100644 --- a/www/ap-fastcgi/pkg/MESSAGE +++ b/www/ap-fastcgi/pkg/MESSAGE @@ -1,12 +1,12 @@ ============================================================================= -$NetBSD: MESSAGE,v 1.5 2000/04/18 09:04:54 mjl Exp $ +$NetBSD: MESSAGE,v 1.6 2000/05/03 16:40:35 mjl Exp $ You will need to edit ${PREFIX}/etc/httpd/httpd.conf and add the following lines in order to use this module. Also see ${PREFIX}/share/httpd/htdocs/manual/mod/mod_fastcgi.html for instructions on setting up FastCGI handlers. -LoadModule fastcgi_module ${PREFIX}/lib/httpd/mod_fastcgi.so +LoadModule fastcgi_module lib/httpd/mod_fastcgi.so AddModule mod_fastcgi.c ============================================================================= |