diff options
author | André Malo <nd@apache.org> | 2014-02-05 23:28:30 +0100 |
---|---|---|
committer | André Malo <nd@apache.org> | 2014-02-05 23:28:30 +0100 |
commit | cc5367ee69671c28f3e20d0d33b3b3c2898fc156 (patch) | |
tree | 40870a6d91c4d4b236fb54f4d3268bb4003d56cf /docs/manual/upgrading.html.en | |
parent | this is not a quote. (diff) | |
download | apache2-cc5367ee69671c28f3e20d0d33b3b3c2898fc156.tar.xz apache2-cc5367ee69671c28f3e20d0d33b3b3c2898fc156.zip |
update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1564960 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/upgrading.html.en')
-rw-r--r-- | docs/manual/upgrading.html.en | 30 |
1 files changed, 9 insertions, 21 deletions
diff --git a/docs/manual/upgrading.html.en b/docs/manual/upgrading.html.en index 1326b319cd..1a8acba263 100644 --- a/docs/manual/upgrading.html.en +++ b/docs/manual/upgrading.html.en @@ -140,39 +140,27 @@ access control.</p> <p>In this example, all requests are denied.</p> - <div class="example"><h3>2.2 configuration:</h3><pre class="prettyprint lang-config"> -Order deny,allow -Deny from all - </pre> + <div class="example"><h3>2.2 configuration:</h3><pre class="prettyprint lang-config">Order deny,allow +Deny from all</pre> </div> - <div class="example"><h3>2.4 configuration:</h3><pre class="prettyprint lang-config"> - Require all denied - </pre> + <div class="example"><h3>2.4 configuration:</h3><pre class="prettyprint lang-config"> Require all denied</pre> </div> <p>In this example, all requests are allowed.</p> - <div class="example"><h3>2.2 configuration:</h3><pre class="prettyprint lang-config"> -Order allow,deny -Allow from all - </pre> + <div class="example"><h3>2.2 configuration:</h3><pre class="prettyprint lang-config">Order allow,deny +Allow from all</pre> </div> - <div class="example"><h3>2.4 configuration:</h3><pre class="prettyprint lang-config"> - Require all granted - </pre> + <div class="example"><h3>2.4 configuration:</h3><pre class="prettyprint lang-config"> Require all granted</pre> </div> <p>In the following example, all hosts in the example.org domain are allowed access; all other hosts are denied access.</p> - <div class="example"><h3>2.2 configuration:</h3><pre class="prettyprint lang-config"> -Order Deny,Allow + <div class="example"><h3>2.2 configuration:</h3><pre class="prettyprint lang-config">Order Deny,Allow Deny from all -Allow from example.org - </pre> +Allow from example.org</pre> </div> - <div class="example"><h3>2.4 configuration:</h3><pre class="prettyprint lang-config"> - Require host example.org - </pre> + <div class="example"><h3>2.4 configuration:</h3><pre class="prettyprint lang-config"> Require host example.org</pre> </div> |