From 9908232d1bc524e03af0a1f2097f12f218238ec5 Mon Sep 17 00:00:00 2001 From: Daniel Gruno Date: Thu, 9 Aug 2012 07:32:27 +0000 Subject: [PATCH] typo fixes git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1371059 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_cache.xml | 2 +- docs/manual/mod/mod_proxy_ajp.xml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/manual/mod/mod_cache.xml b/docs/manual/mod/mod_cache.xml index 6c03be4489..4e16dab612 100644 --- a/docs/manual/mod/mod_cache.xml +++ b/docs/manual/mod/mod_cache.xml @@ -178,7 +178,7 @@ LoadModule cache_module modules/mod_cache.so becomes stale, and the time the stale entity is fully refreshed. On a busy server, a significant number of requests might arrive during this time, and cause a thundering herd of requests to strike the backend - suddenly and unpredicably.

+ suddenly and unpredictably.

To keep the thundering herd at bay, the CacheLock directive can be used to define a directory in which locks are created for URLs in flight. The lock is used as a hint diff --git a/docs/manual/mod/mod_proxy_ajp.xml b/docs/manual/mod/mod_proxy_ajp.xml index ad604f875c..4665761ad4 100644 --- a/docs/manual/mod/mod_proxy_ajp.xml +++ b/docs/manual/mod/mod_proxy_ajp.xml @@ -120,10 +120,10 @@ ProxyPassReverse /apps/foo http://www.example.com/foo the connection can be in one of the following states:

Once a connection is assigned to handle a particular request, the basic - request informaton (e.g. HTTP headers, etc) is sent over the connection in + request information (e.g. HTTP headers, etc) is sent over the connection in a highly condensed form (e.g. common strings are encoded as integers). Details of that format are below in Request Packet Structure. If there is a body to the request (content-length > 0), that is sent in a @@ -139,7 +139,7 @@ ProxyPassReverse /apps/foo http://www.example.com/foo been transferred yet. This is necessary because the packets have a fixed maximum size and arbitrary amounts of data can be included the body of a request (for uploaded files, for example). (Note: this is unrelated to - HTTP chunked tranfer). + HTTP chunked transfer).

  • END_RESPONSE
    Finish the request-handling cycle.
  • Each message is accompanied by a differently formatted packet of data. @@ -277,7 +277,7 @@ ProxyPassReverse /apps/foo http://www.example.com/foo

    To ensure some basic security, the container will only actually do the Shutdown if the request comes from the same machine on which it's hosted.

    -

    The first Data packet is send immediatly after the +

    The first Data packet is send immediately after the Forward Request by the web server.

    The servlet container can send the following types of messages to the webserver:

    @@ -578,7 +578,7 @@ AJP13_GET_BODY_CHUNK :=
    Get Body Chunk

    The container asks for more data from the request (If the body was too large to fit in the first packet sent over or when the request is - chuncked). The server will send a body packet back with an amount of data + chunked). The server will send a body packet back with an amount of data which is the minimum of the request_length, the maximum send body size (8186 (8 Kbytes - 6)), and the number of bytes actually left to send from the request body.
    -- 2.40.0