diff options
author | Rich Bowen <rbowen@apache.org> | 2012-04-26 16:57:35 +0200 |
---|---|---|
committer | Rich Bowen <rbowen@apache.org> | 2012-04-26 16:57:35 +0200 |
commit | 2e5d9d52e1b8e219329c84eea0313d14b7fd5a5c (patch) | |
tree | 6b77c732b713094f1d1c3dc7929fcec938777891 /docs/manual/misc/security_tips.html.en | |
parent | Syntax for files in / (diff) | |
download | apache2-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.en | 38 |
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"> - <Directory /> - AllowOverride None - </Directory> +<Directory /> + AllowOverride None +</Directory> </pre> @@ -367,10 +367,10 @@ configuration:</p> <pre class="prettyprint lang-config"> - <Directory /> - Order Deny,Allow - Deny from all - </Directory> +<Directory /> + Order Deny,Allow + Deny from all +</Directory> </pre> @@ -379,14 +379,14 @@ allow access only in those areas you wish. For example,</p> <pre class="prettyprint lang-config"> - <Directory /usr/users/*/public_html> - Order Deny,Allow - Allow from all - </Directory> - <Directory /usr/local/httpd> - Order Deny,Allow - Allow from all - </Directory> +<Directory /usr/users/*/public_html> + Order Deny,Allow + Allow from all +</Directory> +<Directory /usr/local/httpd> + Order Deny,Allow + Allow from all +</Directory> </pre> @@ -445,10 +445,10 @@ file:</p> <pre class="prettyprint lang-config"> - <Files ".ht*"> - Order allow,deny - Deny from all - </Files> +<Files ".ht*"> + Order allow,deny + Deny from all +</Files> </pre> |