
rbowen at apache
Jun 26, 2012, 7:13 AM
Post #1 of 1
(39 views)
Permalink
|
|
svn commit: r1354027 - in /httpd/httpd/trunk/docs/manual/mod: mod_proxy.xml mod_ssl.xml
|
|
Author: rbowen Date: Tue Jun 26 14:13:11 2012 New Revision: 1354027 URL: http://svn.apache.org/viewvc?rev=1354027&view=rev Log: Applies patch from PR 53201, from Walter (wgoulet) Modified: httpd/httpd/trunk/docs/manual/mod/mod_proxy.xml httpd/httpd/trunk/docs/manual/mod/mod_ssl.xml Modified: httpd/httpd/trunk/docs/manual/mod/mod_proxy.xml URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_proxy.xml?rev=1354027&r1=1354026&r2=1354027&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/mod/mod_proxy.xml (original) +++ httpd/httpd/trunk/docs/manual/mod/mod_proxy.xml Tue Jun 26 14:13:11 2012 @@ -562,6 +562,9 @@ context in 2.3.3 and later.</compatibili need also <module>mod_proxy_http</module> or <module>mod_proxy_ftp</module> (or both) present in the server.</p> + <p>In order to get the functionality of proxying HTTPS sites, you + need <module>mod_proxy_connect</module> enabled in the server.</p> + <note type="warning"><title>Warning</title> <p>Do not enable proxying with <directive module="mod_proxy">ProxyRequests</directive> until you have <a Modified: httpd/httpd/trunk/docs/manual/mod/mod_ssl.xml URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_ssl.xml?rev=1354027&r1=1354026&r2=1354027&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/mod/mod_ssl.xml (original) +++ httpd/httpd/trunk/docs/manual/mod/mod_ssl.xml Tue Jun 26 14:13:11 2012 @@ -1792,6 +1792,13 @@ is usually used inside a <directive modu type="section">VirtualHost</directive> section to enable SSL/TLS for proxy usage in a particular virtual host. By default the SSL/TLS Protocol Engine is disabled for proxy image both for the main server and all configured virtual hosts.</p> + +<p>Note that the SSLProxyEngine directive should not, in +general, be included in a virtual host that will be acting as a +forward proxy (using <Proxy> or <ProxyRequest> directives. +SSLProxyEngine is not required to enable a forward proxy server to +proxy SSL/TLS requests.</p> + <example><title>Example</title> <highlight language="config"> <VirtualHost _default_:443>
|