aboutsummaryrefslogtreecommitdiff
path: root/www/mod_fcgid/files
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2004-08-12 20:51:15 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2004-08-12 20:51:15 +0000
commita937c65931ac9e852c6fc91eb366f0240b4d2887 (patch)
tree2e141e6c9d9ba2419c5f86383c53d2eecc43c3bf /www/mod_fcgid/files
parent0665a0ab4e145637a03a26366ac68a7a95672fb5 (diff)
downloadports-a937c65931ac9e852c6fc91eb366f0240b4d2887.tar.gz
ports-a937c65931ac9e852c6fc91eb366f0240b4d2887.zip
Add www/mod_fcgid, an alternative FastCGI module for Apache2.
mod_fcgid has a new process management strategy, which concentrates on reducing the number of fastcgi server, and kick out the corrupt fastcgi server as soon as possible. The bad news is that it does not currently support suEXEC, and the good news is that it has PHP support. Check out the web site for details. Licence: GPL WWW: http://fastcgi.coremail.cn/
Notes
Notes: svn path=/head/; revision=116068
Diffstat (limited to 'www/mod_fcgid/files')
-rw-r--r--www/mod_fcgid/files/patch-fcgid_conf.c11
-rw-r--r--www/mod_fcgid/files/patch-fcgid_proc_unix.c7
2 files changed, 18 insertions, 0 deletions
diff --git a/www/mod_fcgid/files/patch-fcgid_conf.c b/www/mod_fcgid/files/patch-fcgid_conf.c
new file mode 100644
index 000000000000..6255ce049ecc
--- /dev/null
+++ b/www/mod_fcgid/files/patch-fcgid_conf.c
@@ -0,0 +1,11 @@
+--- fcgid_conf.c.orig Mon Jul 26 07:08:03 2004
++++ fcgid_conf.c Fri Aug 13 05:04:44 2004
+@@ -15,7 +15,7 @@
+ #define DEFAULT_ERROR_SCAN_INTERVAL 3
+ #define DEFAULT_ZOMBIE_SCAN_INTERVAL 3
+ #define DEFAULT_PROC_LIFETIME (60*60)
+-#define DEFAULT_SOCKET_PREFIX "logs/fcgidsock"
++#define DEFAULT_SOCKET_PREFIX "/var/run/fcgidsock"
+ #define DEFAULT_SPAWNSOCRE_UPLIMIT 10
+ #define DEFAULT_SPAWN_SCORE 1
+ #define DEFAULT_TERMINATION_SCORE 2
diff --git a/www/mod_fcgid/files/patch-fcgid_proc_unix.c b/www/mod_fcgid/files/patch-fcgid_proc_unix.c
new file mode 100644
index 000000000000..a3dbe8ba2ef5
--- /dev/null
+++ b/www/mod_fcgid/files/patch-fcgid_proc_unix.c
@@ -0,0 +1,7 @@
+--- arch/unix/fcgid_proc_unix.c.orig Mon Jul 26 07:08:03 2004
++++ arch/unix/fcgid_proc_unix.c Fri Aug 13 04:53:49 2004
+@@ -1,3 +1,4 @@
++#include <sys/types.h>
+ #include <sys/un.h>
+ #include "httpd.h"
+ #include "apr_thread_proc.h"