summaryrefslogtreecommitdiffstats
path: root/docs/manual/misc/security_tips.html.en
diff options
context:
space:
mode:
authorRich Bowen <rbowen@apache.org>2012-04-26 16:57:35 +0200
committerRich Bowen <rbowen@apache.org>2012-04-26 16:57:35 +0200
commit2e5d9d52e1b8e219329c84eea0313d14b7fd5a5c (patch)
tree6b77c732b713094f1d1c3dc7929fcec938777891 /docs/manual/misc/security_tips.html.en
parentSyntax for files in / (diff)
downloadapache2-2e5d9d52e1b8e219329c84eea0313d14b7fd5a5c.tar.xz
apache2-2e5d9d52e1b8e219329c84eea0313d14b7fd5a5c.zip
Rebuild Humbedooh's changes.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1330892 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/misc/security_tips.html.en')
-rw-r--r--docs/manual/misc/security_tips.html.en38
1 files changed, 19 insertions, 19 deletions
diff --git a/docs/manual/misc/security_tips.html.en b/docs/manual/misc/security_tips.html.en
index 1a5ec0a057..d823e2895b 100644
--- a/docs/manual/misc/security_tips.html.en
+++ b/docs/manual/misc/security_tips.html.en
@@ -335,9 +335,9 @@
<p>In the server configuration file, put</p>
<pre class="prettyprint lang-config">
- &lt;Directory /&gt;
- AllowOverride None
- &lt;/Directory&gt;
+&lt;Directory /&gt;
+ AllowOverride None
+&lt;/Directory&gt;
</pre>
@@ -367,10 +367,10 @@
configuration:</p>
<pre class="prettyprint lang-config">
- &lt;Directory /&gt;
- Order Deny,Allow
- Deny from all
- &lt;/Directory&gt;
+&lt;Directory /&gt;
+ Order Deny,Allow
+ Deny from all
+&lt;/Directory&gt;
</pre>
@@ -379,14 +379,14 @@
allow access only in those areas you wish. For example,</p>
<pre class="prettyprint lang-config">
- &lt;Directory /usr/users/*/public_html&gt;
- Order Deny,Allow
- Allow from all
- &lt;/Directory&gt;
- &lt;Directory /usr/local/httpd&gt;
- Order Deny,Allow
- Allow from all
- &lt;/Directory&gt;
+&lt;Directory /usr/users/*/public_html&gt;
+ Order Deny,Allow
+ Allow from all
+&lt;/Directory&gt;
+&lt;Directory /usr/local/httpd&gt;
+ Order Deny,Allow
+ Allow from all
+&lt;/Directory&gt;
</pre>
@@ -445,10 +445,10 @@
file:</p>
<pre class="prettyprint lang-config">
- &lt;Files ".ht*"&gt;
- Order allow,deny
- Deny from all
- &lt;/Files&gt;
+&lt;Files ".ht*"&gt;
+ Order allow,deny
+ Deny from all
+&lt;/Files&gt;
</pre>