From 113aee34636577fefd64bb5ab5c40e76354d7b9b Mon Sep 17 00:00:00 2001 From: Graham Leggett Date: Sat, 29 Sep 2001 20:08:13 +0000 Subject: [PATCH] Oops - forgot the doc updates PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91199 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_proxy.html | 45 ++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/docs/manual/mod/mod_proxy.html b/docs/manual/mod/mod_proxy.html index 3163648158..4f176e369a 100644 --- a/docs/manual/mod/mod_proxy.html +++ b/docs/manual/mod/mod_proxy.html @@ -79,6 +79,7 @@ into a new module, mod_cache.
  • ProxyBlock
  • AllowCONNECT
  • ProxyReceiveBufferSize +
  • ProxyMaxForwards
  • NoProxy
  • ProxyDomain
  • ProxyVia @@ -579,6 +580,50 @@ Example:
    +

    ProxyMaxForwards directive

    +Syntax: ProxyMaxForwards bytes
    +Default: 10
    +Context: server config, virtual host
    +Override: Not applicable
    +Status: Base
    +Module: mod_proxy
    +Compatibility: ProxyMaxForwards is only available in +Apache 2.0 and later.

    + +The ProxyMaxForwards directive specifies the maximum number of proxies +through which a request may pass. This is set to prevent infinite proxy +loops, or a DoS attack. + +

    +Example: + +

    +  ProxyMaxForwards 10
    +
    + +
    +

    NoProxy directive