From: Takashi Sato Date: Sat, 10 May 2008 03:08:13 +0000 (+0000) Subject: Merge r349476 from trunk: X-Git-Tag: 2.2.9~188 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=236f5e4ba145c6d909c047181f0a403a9da05653;p=thirdparty%2Fapache%2Fhttpd.git Merge r349476 from trunk: - try to add a note to explain the behaviour of clients use a pipelined connection wrt to MaxRequestsPerChild and KeepAlive. Merge r413683 from trunk: A little bit more detail, and an example, for how DocumentRoot is handled. Examples good. Merge r449032 from trunk: Capitalization consistency Submitted by Vincent Bray Merge r649076 from trunk: Replace reference to obsolete RFC. Submitted by: Igor Galić. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@655009 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml index c2fb49d80cc..e01312de92f 100644 --- a/docs/manual/mod/core.xml +++ b/docs/manual/mod/core.xml @@ -565,7 +565,7 @@ headers

This directive enables the generation of Content-MD5 headers as defined in RFC1864 - respectively RFC2068.

+ respectively RFC2616.

MD5 is an algorithm for computing a "message digest" (sometimes called "fingerprint") of arbitrary-length data, with @@ -842,8 +842,8 @@ from the web

The DocumentRoot should be specified without a trailing slash.

-Mapping URLs to Filesystem -Location +Mapping URLs to Filesystem +Locations @@ -1549,6 +1549,10 @@ the server configuration files unless otherwise specified. If the client requests it, chunked encoding will be used in order to send content of unknown length over persistent connections.

+ +

When a client uses a Keep-Alive connection it will be counted + as a single "request" for the MaxRequestsPerChild directive, regardless + of how many requests are sent using the connection.

MaxKeepAliveRequests @@ -1792,8 +1796,8 @@ will be accepted from the client LimitRequestFieldSize Limits the size of the HTTP request header allowed from the client -LimitRequestFieldsize bytes -LimitRequestFieldsize 8190 +LimitRequestFieldSize bytes +LimitRequestFieldSize 8190 server config diff --git a/docs/manual/mod/core.xml.de b/docs/manual/mod/core.xml.de index fa0c00830d7..7866248b7e5 100644 --- a/docs/manual/mod/core.xml.de +++ b/docs/manual/mod/core.xml.de @@ -518,7 +518,7 @@ HTTP-Response-Headern

Die Direktive aktiviert die Generierung von - Content-MD5-Headern, wie sie in RFC1864 bzw. RFC2068 + Content-MD5-Headern, wie sie in RFC1864 bzw. RFC2616 definiert sind.

MD5 ist ein Algorithmus zur Berechnung eines "Datenextrakts" diff --git a/docs/manual/mod/core.xml.ja b/docs/manual/mod/core.xml.ja index 089856ccf8c..73f02685d8f 100644 --- a/docs/manual/mod/core.xml.ja +++ b/docs/manual/mod/core.xml.ja @@ -546,7 +546,7 @@ Experimental -

$B$3$N%G%#%l%/%F%#%V$O!"(BRFC1864 $B5Z$S(B RFC2068 $B$K$*$$$FDj5A$5$l$F$$$k(B +

$B$3$N%G%#%l%/%F%#%V$O!"(BRFC1864 $B5Z$S(B RFC2616 $B$K$*$$$FDj5A$5$l$F$$$k(B Content-MD5 $B%X%C%@!<$N@8@.$rM-8z$K$7$^$9!#(B

MD5 $B$O!"G$0UD9$N%G!<%?$N!V%a%C%;!<%8%@%$%8%'%9%H!W(B($B!V;XLf!W(B @@ -1789,8 +1789,8 @@ module="core">Directory LimitRequestFieldSize $B%/%i%$%"%s%H$+$i$N(B HTTP $B%j%/%(%9%H$N%X%C%@$N(B $B%5%$%:$r@)8B$9$k(B -LimitRequestFieldsize bytes -LimitRequestFieldsize 8190 +LimitRequestFieldSize bytes +LimitRequestFieldSize 8190 server config diff --git a/docs/manual/urlmapping.xml b/docs/manual/urlmapping.xml index 721182da445..7b7eec374f3 100644 --- a/docs/manual/urlmapping.xml +++ b/docs/manual/urlmapping.xml @@ -74,6 +74,12 @@ make up the basic document tree which will be visible from the web.

+

For example, if DocumentRoot + were set to /var/www/html then a request for + http://www.example.com/fish/guppies.html would result + in the file /var/www/html/fish/guppies.html being + served to the requesting client.

+

Apache is also capable of Virtual Hosting, where the server receives requests for more than one host. In this case, a different + +

The DocumentRoot directive + is set in your main server configuration file + (httpd.conf) and, possibly, once per additional Virtual Host you create.

Files Outside the DocumentRoot