]> granicus.if.org Git - apache/blob - docs/manual/mod/mod_proxy_fcgi.xml
improve balancer references in the examples
[apache] / docs / manual / mod / mod_proxy_fcgi.xml
1 <?xml version="1.0"?>
2 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
3 <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
4 <!-- $LastChangedRevision$ -->
5
6 <!--
7  Licensed to the Apache Software Foundation (ASF) under one or more
8  contributor license agreements.  See the NOTICE file distributed with
9  this work for additional information regarding copyright ownership.
10  The ASF licenses this file to You under the Apache License, Version 2.0
11  (the "License"); you may not use this file except in compliance with
12  the License.  You may obtain a copy of the License at
13
14      http://www.apache.org/licenses/LICENSE-2.0
15
16  Unless required by applicable law or agreed to in writing, software
17  distributed under the License is distributed on an "AS IS" BASIS,
18  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  See the License for the specific language governing permissions and
20  limitations under the License.
21 -->
22
23 <modulesynopsis metafile="mod_proxy_fcgi.xml.meta">
24
25 <name>mod_proxy_fcgi</name>
26 <description>FastCGI support module for
27 <module>mod_proxy</module></description>
28 <status>Extension</status>
29 <sourcefile>mod_proxy_fcgi.c</sourcefile>
30 <identifier>proxy_fcgi_module</identifier>
31 <compatibility>Available in version 2.3 and later</compatibility>
32
33 <summary>
34     <p>This module <em>requires</em> the service of <module
35     >mod_proxy</module>. It provides support for the 
36     <a href="http://www.fastcgi.com/">FastCGI</a> protocol.</p>
37
38     <p>Thus, in order to get the ability of handling the <code>FastCGI</code>
39     protocol, <module>mod_proxy</module> and
40     <module>mod_proxy_fcgi</module> have to be present in the server.</p>
41
42     <p>Unlike <a href="http://httpd.apache.org/mod_fcgid/">mod_fcgid</a>
43     or <a href="http://www.fastcgi.com/">mod_fastcgi</a>, 
44     <module>mod_proxy_fcgi</module> has no provision for starting the
45     application process; <program>fcgistarter</program> is provided for
46     that purpose.</p>
47
48     <note type="warning"><title>Warning</title>
49       <p>Do not enable proxying until you have <a
50       href="mod_proxy.html#access">secured your server</a>. Open proxy
51       servers are dangerous both to your network and to the Internet at
52       large.</p>
53     </note>
54 </summary>
55
56 <seealso><program>fcgistarter</program></seealso>
57 <seealso><module>mod_proxy</module></seealso>
58
59 <section id="examples"><title>Examples</title>
60     <p>Remember, in order to make the following examples work, you have to
61     enable <module>mod_proxy</module> and <module>mod_proxy_fcgi</module>.</p>
62
63     <example><title>Simple script</title>
64       ProxyPass /myapp/ fcgi://localhost:4000/
65     </example>
66
67     <p>The balanced gateway needs <module>mod_proxy_balancer</module> and
68     at least one load balancer algorithm module, such as 
69     <module>mod_lbmethod_byrequests</module>, in addition to the proxy
70     modules listed above.  <module>mod_lbmethod_byrequests</module> is the
71     default.</p>
72
73     <example><title>Balanced gateway</title>
74     ProxyPass /myapp/ balancer://myappcluster/<br />
75     &lt;Proxy balancer://myappcluster/&gt;<br />
76     <indent>
77         BalancerMember fcgi://localhost:4000/<br />
78         BalancerMember fcgi://localhost:4001/<br />
79     </indent>
80     &lt;/Proxy&gt;
81     </example>
82 </section>
83
84 </modulesynopsis>