From: Ruediger Pluem Date: Sat, 1 Nov 2008 11:29:00 +0000 (+0000) Subject: * Update transformation X-Git-Tag: 2.3.0~183 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da4b4f4abff1696ab651fd50350eae4cd8a2c77f;p=thirdparty%2Fapache%2Fhttpd.git * Update transformation git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@709677 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/core.html.en b/docs/manual/mod/core.html.en index 30074fe4950..dad5c15f0ee 100644 --- a/docs/manual/mod/core.html.en +++ b/docs/manual/mod/core.html.en @@ -1608,8 +1608,8 @@ requests on a persistent connection methods Syntax:<Limit method [method] ... > ... </Limit> -Context:server config, virtual host, directory, .htaccess -Override:All +Context:directory, .htaccess +Override:AuthConfig, Limit Status:Core Module:core @@ -1643,13 +1643,44 @@ methods LOCK, and UNLOCK. The method name is case-sensitive. If GET is used it will also restrict HEAD requests. The TRACE method - cannot be limited (see <TraceEnable>).

+ cannot be limited (see TraceEnable).

A <LimitExcept> section should always be - used in preference to a <Limit> section when restricting access, - since a <LimitExcept> section provides protection + used in preference to a <Limit> + section when restricting access, since a <LimitExcept> section provides protection against arbitrary methods.
+

The <Limit> and + <LimitExcept> + directives may be nested. In this case, each successive level of + <Limit> or <LimitExcept> directives must + further restrict the set of methods to which access controls apply.

+ +
When using + <Limit> or + <LimitExcept> directives with + the Require directive, + note that the first Require + to succeed authorizes the request, regardless of the presence of other + Require directives.
+ +

For example, given the following configuration, all users will + be authorized for POST requests, and the + Require group editors directive will be ignored + in all cases:

+ +

+ <LimitExcept GET> + + Require valid-user + + </LimitExcept>
+ <Limit POST> + + Require group editors + + </Limit> +

top
@@ -1659,8 +1690,8 @@ methods except the named ones Syntax:<LimitExcept method [method] ... > ... </LimitExcept> -Context:server config, virtual host, directory, .htaccess -Override:All +Context:directory, .htaccess +Override:AuthConfig, Limit Status:Core Module:core diff --git a/docs/manual/mod/core.xml.de b/docs/manual/mod/core.xml.de index aeec109fe6e..4db52f83af6 100644 --- a/docs/manual/mod/core.xml.de +++ b/docs/manual/mod/core.xml.de @@ -1,7 +1,7 @@ - + + +