From a76bcb7fc8f8e0f3185f025b932393d24e39194b Mon Sep 17 00:00:00 2001 From: pcs Date: Fri, 10 Oct 1997 09:08:40 +0000 Subject: [PATCH] Document valid method names in statements. Mention that GET also restricts HEAD requests (see PR#1196). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79360 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/core.html | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/manual/mod/core.html b/docs/manual/mod/core.html index d523b5e40c..44425de7e8 100644 --- a/docs/manual/mod/core.html +++ b/docs/manual/mod/core.html @@ -918,10 +918,13 @@ unaffected by the <Limit>. Example: <Limit GET POST>
require valid-user
</Limit> -If an access control directive appears outside a <Limit> directive, -then it applies to all access methods. If you wish to limit -all methods, do not include any <Limit> directive at all. -


+ +If an access control directive appears outside a <Limit> +directive, then it applies to all access methods. The method names +listed can be one or more of: GET, POST, PUT, DELETE, CONNECT or +OPTIONS. If GET is used it will also restrict HEAD requests. +If you wish to limit all methods, do not include any +<Limit> directive at all.


<Location> directive

-- 2.50.1