From: brian Date: Mon, 3 Feb 1997 01:18:17 +0000 (+0000) Subject: Reviewed by: Brian Behlendorf X-Git-Tag: APACHE_1_2b7~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d7c1caaa39517e8113cc7c2d4ee430b4c6a9a4cf;p=apache Reviewed by: Brian Behlendorf Submitted by: Dean Gaudet The docs show some examples using ... where the s are not strictly required. Since it is less secure to specify them than it is to leave them out I think the examples should be modified. If they're to be left in, then some of them need < ... >. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@77548 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/location.html b/docs/manual/location.html index 36e5944c0a..e6e39a012a 100644 --- a/docs/manual/location.html +++ b/docs/manual/location.html @@ -40,11 +40,9 @@ from browsers at foo.com, you might use:
     <Location /status>
     SetHandler server-status
-    
     order deny,allow
     deny from all
     allow from .foo.com
-    
     </Location>
 
diff --git a/docs/manual/mod/core.html b/docs/manual/mod/core.html index 6e018ed8fc..cca91e587b 100644 --- a/docs/manual/mod/core.html +++ b/docs/manual/mod/core.html @@ -666,11 +666,9 @@ from browsers at foo.com, you might use:
     <Location /status>
     SetHandler server-status
-    
     order deny,allow
     deny from all
     allow from .foo.com
-    
     </Location>
 

diff --git a/docs/manual/mod/mod_access.html b/docs/manual/mod/mod_access.html index 42fb2da710..3f41cff6c9 100644 --- a/docs/manual/mod/mod_access.html +++ b/docs/manual/mod/mod_access.html @@ -30,8 +30,7 @@ hostname or IP address. Status: Base
Module: mod_access

-The allow directive affects which hosts can access a given directory; it is -typically used within a <Limit> section. +The allow directive affects which hosts can access a given directory. Host is one of the following:

all @@ -60,8 +59,7 @@ See also deny and order.


Status: Base
Module: mod_access

-The deny directive affects which hosts can access a given directory; it is -typically used within a <Limit> section. +The deny directive affects which hosts can access a given directory. Host is one of the following:

all diff --git a/docs/manual/mod/mod_status.html b/docs/manual/mod/mod_status.html index 6fd11dff31..1ce412c99d 100644 --- a/docs/manual/mod/mod_status.html +++ b/docs/manual/mod/mod_status.html @@ -45,11 +45,9 @@ domain add this code to your access.conf configuration file <Location /server-status> SetHandler server-status - <Limit GET POST> order deny,allow deny from all allow from .foo.com - </Limit> </Location>