From: Luca Toscano Date: Sat, 23 Jun 2018 13:14:17 +0000 (+0000) Subject: documentation rebuild X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=98b7386272b1b4e20a0bcfc5ec47ec4b32ddc887;p=apache documentation rebuild git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1834204 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_proxy.html.en b/docs/manual/mod/mod_proxy.html.en index de3c66bd0a..a4aa39628a 100644 --- a/docs/manual/mod/mod_proxy.html.en +++ b/docs/manual/mod/mod_proxy.html.en @@ -1268,7 +1268,8 @@ ProxyPass "/mirror/foo" "http://backend.example.com" Adjust the size of the proxy response field buffer. The buffer size should be at least the size of the largest expected header size from a proxied response. Setting the value to 0 will use the system - default of 8192 bytes. + default of 8192 bytes.
+ Available in Apache HTTP Server 2.4.34 and later. keepalive Off @@ -1559,9 +1560,10 @@ ProxyPass "/" "balancer://mycluster/" stickysession=JSESSIONID|jsess environment variables will not exist when this interpolation happens, so you may still have to resort to mod_rewrite for complex rules. Also note that interpolation is not supported - within the scheme portion of a URL. Dynamic determination of the - scheme can be accomplished with mod_rewrite as in the - following example.

+ within the scheme/hostname/port portion of a URL. Dynamic determination of + those fields can be accomplished with mod_rewrite. + The following example describes how to use mod_rewrite + to dynamically set the scheme to http or https:

RewriteEngine On
 
@@ -1621,7 +1623,12 @@ ProxyPassReverse  "/mirror/foo/" "https://backend.example.com/"
and causes them to substitute the value of an environment variable varname for the string ${varname} in configuration directives if the interpolate option is set.

-

Keep this turned off (for server performance) unless you need it!

+

The scheme/hostname/port portion of ProxyPass cannot + contain variables, please consider using mod_rewrite instead.

+

Keep this turned off (for server performance) unless you need it! + Adding variables to ProxyPass for example may lead to + using the default mod_proxy's workers configured (that don't allow any fine + tuning like connections reuse, etc..).

top
diff --git a/docs/manual/mod/mod_proxy.xml.fr b/docs/manual/mod/mod_proxy.xml.fr index e8e24333d9..1f2eb679b5 100644 --- a/docs/manual/mod/mod_proxy.xml.fr +++ b/docs/manual/mod/mod_proxy.xml.fr @@ -1,7 +1,7 @@ - + diff --git a/docs/manual/mod/mod_proxy.xml.ja b/docs/manual/mod/mod_proxy.xml.ja index 3a2cdbadc2..69a286331c 100644 --- a/docs/manual/mod/mod_proxy.xml.ja +++ b/docs/manual/mod/mod_proxy.xml.ja @@ -1,7 +1,7 @@ - + + + + diff --git a/docs/manual/mod/mod_ssl.xml.meta b/docs/manual/mod/mod_ssl.xml.meta index d50eb9de39..194507ef07 100644 --- a/docs/manual/mod/mod_ssl.xml.meta +++ b/docs/manual/mod/mod_ssl.xml.meta @@ -9,6 +9,6 @@ en es - fr + fr diff --git a/docs/manual/mod/quickreference.html.en b/docs/manual/mod/quickreference.html.en index b5f01cda8d..867e87fade 100644 --- a/docs/manual/mod/quickreference.html.en +++ b/docs/manual/mod/quickreference.html.en @@ -830,7 +830,7 @@ response ProxyHCExpr name {ap_expr expression}svECreates a named condition expression to use to determine health of the backend based on its response ProxyHCTemplate name parameter=setting [...]svECreates a named template for setting various health check parameters ProxyHCTPsize sizesESets the total server-wide size of the threadpool used for the health check workers -ProxyHTMLBufSize bytessvdBSets the buffer size increment for buffering inline scripts and +ProxyHTMLBufSize bytes 8192 svdBSets the buffer size increment for buffering inline scripts and stylesheets. ProxyHTMLCharsetOut Charset | *svdBSpecify a charset for mod_proxy_html output. ProxyHTMLDocType HTML|XHTML [Legacy]
OR