From fb7a8b17964a6fa825433c80859d25a24ebd5e01 Mon Sep 17 00:00:00 2001 From: Takashi Sato Date: Thu, 19 Jun 2008 16:33:36 +0000 Subject: [PATCH] Add documents of mod_proxy_fcgi and fcgistarter. These are incomplete. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@669542 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_proxy_fcgi.xml | 52 ++++++++++++++++++++++++ docs/manual/programs/fcgistarter.xml | 61 ++++++++++++++++++++++++++++ 2 files changed, 113 insertions(+) create mode 100644 docs/manual/mod/mod_proxy_fcgi.xml create mode 100644 docs/manual/programs/fcgistarter.xml diff --git a/docs/manual/mod/mod_proxy_fcgi.xml b/docs/manual/mod/mod_proxy_fcgi.xml new file mode 100644 index 0000000000..b9a3f90996 --- /dev/null +++ b/docs/manual/mod/mod_proxy_fcgi.xml @@ -0,0 +1,52 @@ + + + + + + + + + +mod_proxy_fcg +FastCGI support module for +mod_proxy +Extension +mod_proxy_fcgi.c +proxy_fcgi_module +Available in version 2.3 and later + + +

This module requires the service of mod_proxy. It provides support for the + FastCGI.

+ +

Thus, in order to get the ability of handling FastCGI + protocol, mod_proxy and + mod_proxy_fcgi have to be present in the server.

+ + Warning +

Do not enable proxying until you have secured your server. Open proxy + servers are dangerous both to your network and to the Internet at + large.

+
+
+ +fcgistarter +mod_proxy +
diff --git a/docs/manual/programs/fcgistarter.xml b/docs/manual/programs/fcgistarter.xml new file mode 100644 index 0000000000..06cf4c716a --- /dev/null +++ b/docs/manual/programs/fcgistarter.xml @@ -0,0 +1,61 @@ + + + + + + + + +Programs + +fcgistarter - Start a FastCGI program + + +

+ Note +

Currently only works on Unix systems.

+
+
+mod_proxy_fcgi + +
Synopsis +

fcgistarter + -c command + -p port + [ -i interface ] + -N num +

+
+ +
Options +
+
-c command
+
FastCGI program
+ +
-p port
+
Port which the program will listens on
+ +
-i interface
+
Interface which the program will listens on
+ +
-N num
+
Number of instances of the program
+ +
+
+
-- 2.50.1