From: Martin Kraemer Date: Tue, 8 Sep 1998 21:15:53 +0000 (+0000) Subject: Sameer posted the AllowCONNECT back in march. I adapted it to default X-Git-Tag: 1.3.2~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=71026141b7d3e75a5a06af338960b1a53428b0b1;p=apache Sameer posted the AllowCONNECT back in march. I adapted it to default to ports 443 and 563 (for https:// and snews://) and wrote a description for the mod_proxy.html document. Submitted by: Sameer Parekh git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@82014 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_proxy.html b/docs/manual/mod/mod_proxy.html index c09fc19847..3c5d991e16 100644 --- a/docs/manual/mod/mod_proxy.html +++ b/docs/manual/mod/mod_proxy.html @@ -45,6 +45,7 @@ and other protocols.
  • ProxyPass
  • ProxyPassReverse
  • ProxyBlock +
  • AllowCONNECT
  • ProxyReceiveBufferSize
  • NoProxy
  • ProxyDomain @@ -269,6 +270,48 @@ conjunction with the proxy pass-through feature ("RewriteRule ...
    +

    AllowCONNECT

    +Syntax: AllowCONNECT <port list>
    +Default: AllowCONNECT 443 563
    +Context: server config, virtual host
    +Override: Not applicable
    +Status: Base
    +Module: mod_proxy
    +Compatibility: AllowCONNECT is only +available in Apache 1.3.2 and later.

    + +The AllowCONNECT directive specifies a list of port numbers +to which the proxy CONNECT method may connect. +Today's browsers use this method when a https connection +is requested and proxy tunneling over http is in effect.
    +By default, only the default https port (443) and the default +snews port (563) are enabled. Use the AllowCONNECT +directive to overrride this default and allow connections to the +listed ports only. + +


    +

    ProxyBlock