comparison xml/en/docs/http/ngx_http_access_module.xml @ 351:a4fa80755eab

Consistently strip initial offset in examples.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 24 Jan 2012 11:01:22 +0000
parents e00f8f8c0486
children 244500f24783
comparison
equal deleted inserted replaced
350:55c1c4a1748f 351:a4fa80755eab
18 18
19 <section id="example" name="Example Configuration"> 19 <section id="example" name="Example Configuration">
20 20
21 <para> 21 <para>
22 <example> 22 <example>
23 location / { 23 location / {
24 deny 192.168.1.1; 24 deny 192.168.1.1;
25 allow 192.168.1.0/24; 25 allow 192.168.1.0/24;
26 allow 10.1.1.0/16; 26 allow 10.1.1.0/16;
27 deny all; 27 deny all;
28 } 28 }
29 </example> 29 </example>
30 </para> 30 </para>
31 31
32 <para> 32 <para>
33 The rules are checked in sequence until the first match is found. 33 The rules are checked in sequence until the first match is found.