From: pcs Date: Fri, 10 Oct 1997 09:13:09 +0000 (+0000) Subject: Put into its correct alphabetical position. X-Git-Tag: APACHE_1_3b2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5efa34aa80406d789d725804e8eb2e48e9cac63a;p=thirdparty%2Fapache%2Fhttpd.git Put into its correct alphabetical position. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79362 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/core.html b/docs/manual/mod/core.html index 44425de7e8d..05068fab539 100644 --- a/docs/manual/mod/core.html +++ b/docs/manual/mod/core.html @@ -834,6 +834,31 @@ href="#timeout">Timeout directive applies.
+

<Limit> directive

+ +Syntax: + <Limit method method ... > ... </Limit>
+Context: any
+Status: core

+ +<Limit> and </Limit> are used to enclose a group of +access control directives which will then apply only to the specified +access methods, where method is any valid HTTP method. +Any directive except another <Limit> or +<Directory> may be used; the majority will be +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. 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.


+

Listen directive

Syntax: Listen [IP address:]port number
@@ -901,31 +926,6 @@ tuning is needed or desired, however on some systems it is desirable to increase this when under a TCP SYN flood attack. See the backlog parameter to the listen(2) system call.


-

<Limit> directive

- -Syntax: - <Limit method method ... > ... </Limit>
-Context: any
-Status: core

- -<Limit> and </Limit> are used to enclose a group of -access control directives which will then apply only to the specified -access methods, where method is any valid HTTP method. -Any directive except another <Limit> or -<Directory> may be used; the majority will be -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. 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

Syntax: <Location URL>