From ea06c6ea05bd720eefbc693b065429045404dcac Mon Sep 17 00:00:00 2001 From: Rich Bowen Date: Tue, 5 May 2026 17:04:05 +0000 Subject: [PATCH] docs: Replace Note: with per style guide git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1933850 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/developer/lua.xml | 5 ++--- docs/manual/mod/mod_dir.xml | 4 ++-- docs/manual/mod/mod_proxy.xml | 6 +++--- docs/manual/mod/mod_proxy_html.xml | 5 +++-- docs/manual/mod/mod_request.xml | 4 ++-- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/manual/developer/lua.xml b/docs/manual/developer/lua.xml index fc738cfec1..ad27f98e09 100644 --- a/docs/manual/developer/lua.xml +++ b/docs/manual/developer/lua.xml @@ -97,11 +97,10 @@ pool, and if it has high usage, use the thread setting. As your ser load increases, so will the number of states being actively used, and having your scope set to once/request/conn will stop being beneficial to your memory footprint.

-

-Note: The min and max settings for the +The min and max settings for the server scope denotes the minimum and maximum states to keep in a pool per server process, so keep this below your ThreadsPerChild limit. -

+
Using code caching diff --git a/docs/manual/mod/mod_dir.xml b/docs/manual/mod/mod_dir.xml index 53e2855c95..82f9dc1a13 100644 --- a/docs/manual/mod/mod_dir.xml +++ b/docs/manual/mod/mod_dir.xml @@ -102,10 +102,10 @@ a directory literally if it has any arguments before or after it, even if they are "disabled" as well.

-

Note: Multiple DirectoryIndex + Multiple DirectoryIndex directives within the same context will add to the list of resources to look for rather than replace: -

+ # Example A: Set index.html as an index page, then add index.php to that list as well. <Directory "/foo"> diff --git a/docs/manual/mod/mod_proxy.xml b/docs/manual/mod/mod_proxy.xml index 169d1d86de..3d711b374d 100644 --- a/docs/manual/mod/mod_proxy.xml +++ b/docs/manual/mod/mod_proxy.xml @@ -943,10 +943,10 @@ expressions the socket is local, the hostname used (in this case localhost) is moot, but it is passed as the Host: header value of the request.

- Note: The path associated with the unix: + The path associated with the unix: URL is DefaultRuntimeDir aware. - Note: RewriteRule requires + RewriteRule requires the [P,NE] option to prevent the '|' character from being escaped. @@ -1594,7 +1594,7 @@ when the url parameter contains backreference(s) (see note below). matches, the server will substitute any parenthesized matches into the given string and use it as a new url.

- Note: This directive cannot be used within a + This directive cannot be used within a <Directory> context. Worker matching with backreferences diff --git a/docs/manual/mod/mod_proxy_html.xml b/docs/manual/mod/mod_proxy_html.xml index 2501db8f49..cb25a9b128 100644 --- a/docs/manual/mod/mod_proxy_html.xml +++ b/docs/manual/mod/mod_proxy_html.xml @@ -106,8 +106,9 @@ still be configured using regular filter directives, this will not support i18n at all. Instead, a new directive ProxyHTMLEnable has been introduced to configure both mod_proxy_html's filter and mod_xml2enc. It is recommended that you always use ProxyHTMLEnable even where i18n -support is not required. Note that this is a change from earlier -versions where filter directives were used to activate mod_proxy_html.

+support is not required.

+This is a change from earlier +versions where filter directives were used to activate mod_proxy_html.
diff --git a/docs/manual/mod/mod_request.xml b/docs/manual/mod/mod_request.xml index 6b653de56a..00c6d51f96 100644 --- a/docs/manual/mod/mod_request.xml +++ b/docs/manual/mod/mod_request.xml @@ -65,13 +65,13 @@ mod_include. into the URL space from another server using mod_proxy.

-

Note: Each request set aside has to be set + Each request set aside has to be set aside in temporary RAM until the request is complete. As a result, care should be taken to ensure sufficient RAM is available on the server to support the intended load. Use of this directive should be limited to where needed on targeted parts of your URL space, and with the lowest possible value that is still big - enough to hold a request body.

+ enough to hold a request body.

If the request size sent by the client exceeds the maximum size allocated by this directive, the server will return -- 2.47.3