diff options
author | Takashi Sato <takashi@apache.org> | 2009-12-29 16:39:54 +0100 |
---|---|---|
committer | Takashi Sato <takashi@apache.org> | 2009-12-29 16:39:54 +0100 |
commit | 255f44600cd466d26423e0a74f74cd07a728593a (patch) | |
tree | 072b077a67c698c8735e7cd5387770c8361c197c /docs/manual/mod/mod_proxy_connect.xml | |
parent | Adds a [QSD] flag to RewriteRule to discard unwanted query strings (diff) | |
download | apache2-255f44600cd466d26423e0a74f74cd07a728593a.tar.xz apache2-255f44600cd466d26423e0a74f74cd07a728593a.zip |
Move AllowCONNECT from mod_proxy to mod_proxy_connect.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@894425 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_proxy_connect.xml')
-rw-r--r-- | docs/manual/mod/mod_proxy_connect.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/manual/mod/mod_proxy_connect.xml b/docs/manual/mod/mod_proxy_connect.xml index ed8f07d845..b442008ea3 100644 --- a/docs/manual/mod/mod_proxy_connect.xml +++ b/docs/manual/mod/mod_proxy_connect.xml @@ -49,4 +49,26 @@ <seealso><directive module="mod_proxy">AllowCONNECT</directive></seealso> <seealso><module>mod_proxy</module></seealso> +<directivesynopsis> +<name>AllowCONNECT</name> +<description>Ports that are allowed to <code>CONNECT</code> through the +proxy</description> +<syntax>AllowCONNECT <var>port</var> [<var>port</var>] ...</syntax> +<default>AllowCONNECT 443 563</default> +<contextlist><context>server config</context><context>virtual host</context> +</contextlist> + +<usage> + <p>The <directive>AllowCONNECT</directive> directive specifies a list + of port numbers to which the proxy <code>CONNECT</code> method may + connect. Today's browsers use this method when a <code>https</code> + connection is requested and proxy tunneling over HTTP is in effect.</p> + + <p>By default, only the default https port (<code>443</code>) and the + default snews port (<code>563</code>) are enabled. Use the + <directive>AllowCONNECT</directive> directive to override this default and + allow connections to the listed ports only.</p> +</usage> +</directivesynopsis> + </modulesynopsis> |