~ubuntu-branches/ubuntu/jaunty/apache2/jaunty-proposed

« back to all changes in this revision

Viewing changes to docs/manual/mod/mod_proxy_http.html.en

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2008-12-15 00:06:50 UTC
  • mfrom: (14.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20081215000650-5ovq2vvvrtmn5r1l
Tags: 2.2.11-1ubuntu1
* Merge from debian unstable, remaining changes:
  - debian/{control, rules}: enable PIE hardening.
  - debian/{control, rules, apache2.2-common.ufw.profile}: add ufw profiles.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
<code class="module"><a href="../mod/mod_proxy.html">mod_proxy</a></code></td></tr>
28
28
<tr><th><a href="module-dict.html#Status">Status:</a></th><td>Extension</td></tr>
29
29
<tr><th><a href="module-dict.html#ModuleIdentifier">Module�Identifier:</a></th><td>proxy_http_module</td></tr>
30
 
<tr><th><a href="module-dict.html#SourceFile">Source�File:</a></th><td>proxy_http.c</td></tr></table>
 
30
<tr><th><a href="module-dict.html#SourceFile">Source�File:</a></th><td>mod_proxy_http.c</td></tr></table>
31
31
<h3>Summary</h3>
32
32
 
33
33
    <p>This module <em>requires</em> the service of <code class="module"><a href="../mod/mod_proxy.html">mod_proxy</a></code>. It provides the features used for
75
75
        <dt>proxy-nokeepalive</dt>
76
76
        <dd>Forces the proxy to close the backend connection after
77
77
        each request.</dd>
78
 
        <dt>Proxy-Chain-Auth</dt>
 
78
        <dt>proxy-chain-auth</dt>
79
79
        <dd>If the proxy requires authentication, it will read and
80
80
        consume the proxy authentication credentials sent by the client.
81
 
        With <var>Proxy-Chain-Auth</var> it will <em>also</em> forward
 
81
        With <var>proxy-chain-auth</var> it will <em>also</em> forward
82
82
        the credentials to the next proxy in the chain.  This may
83
83
        be necessary if you have a chain of proxies that share
84
84
        authentication information.  <strong>Security Warning:</strong>
109
109
        <code>proxy-interim-response RFC</code> to be fully protocol
110
110
        compliant, or <code>proxy-interim-response Suppress</code>
111
111
        to suppress interim responses.</dd>
 
112
        <dt>proxy-initial-not-pooled</dt>
 
113
        <dd>If this variable is set no pooled connection will be reused
 
114
        if the client connection is an initial connection. This avoids
 
115
        the "proxy: error reading status line from remote server" error message
 
116
        caused by the race condition that the backend server closed the
 
117
        pooled connection after the connection check by the proxy and
 
118
        before data send by the proxy reached the backend. It has to be
 
119
        kept in mind that setting this variable downgrades performance,
 
120
        especially with HTTP/1.0 clients.
 
121
        </dd>
112
122
    </dl>
113
123
</div>
114
124
</div>