From: Igor Galić Date: Wed, 1 Dec 2010 13:51:30 +0000 (+0000) Subject: Minor fixes in spelling/grammar/xml/versions X-Git-Tag: 2.3.10~126 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b66112f2487fd35a2a9922872005c611e3cdbb88;p=apache Minor fixes in spelling/grammar/xml/versions git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1041010 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/install.xml b/docs/manual/install.xml index 69aef54c44..d918c0cdba 100644 --- a/docs/manual/install.xml +++ b/docs/manual/install.xml @@ -337,7 +337,7 @@ $ tar xvf httpd-NN.tar

The first step in upgrading is to read the release announcement and the file CHANGES in the source distribution to find any changes that may affect your site. When changing between - major releases (for example, from 1.3 to 2.0 or from 2.0 to 2.2), + major releases (for example, from 2.0 to 2.2 or from 2.2 to 2.3), there will likely be major differences in the compile-time and run-time configuration that will require manual adjustments. All modules will also need to be upgraded to accomodate changes in the diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml index fd40492e12..e46ed90bba 100644 --- a/docs/manual/mod/core.xml +++ b/docs/manual/mod/core.xml @@ -36,11 +36,11 @@ available On Windows from Apache httpd 2.3.3 and later. -

This directive enables operating system specific optimizations for a - listening socket by the Protocol type. The basic premise is for the - kernel to not send a socket to the server process until either data - is received or an entire HTTP Request is buffered. Only - +

This directive enables operating system specific optimizations for a + listening socket by the Protocoltype. + The basic premise is for the kernel to not send a socket to the server + process until either data is received or an entire HTTP Request is buffered. + Only FreeBSD's Accept Filters, Linux's more primitive TCP_DEFER_ACCEPT, and Windows' optimized AcceptEx() are currently supported.

@@ -100,7 +100,7 @@ On Windows from Apache httpd 2.3.3 and later. the connect option does not wait for the initial data transmission.

-

On Windows, none uses accept() rather than than AcceptEx() +

On Windows, none uses accept() rather than AcceptEx() and will not recycle sockets between connections. This is useful for network adapters with broken driver support, as well as some virtual network providers such as vpn drivers, or spam, virus or spyware @@ -2289,6 +2289,7 @@ URLs

The enclosed directives will be applied to the request if the path component of the URL meets any of the following criteria: +

+

In the example below, where no trailing slash is used, requests to /private1, /private1/ and /private1/file.txt will have the enclosed directives applied, but /private1other would not. +

<Location /private1> ... +

In the example below, where a trailing slash is used, requests to /private2/ and /private2/file.txt will have the enclosed directives applied, but /private2 and /private2other would not. +

<Location /private2/> ... -

When to use <directive type="section">Location</directive>