1 |
# |
2 |
# $Id: SECURITY,v 1.1 2004/03/08 20:27:03 culley Exp $ |
3 |
# |
4 |
# DESCRIPTION |
5 |
# These are the apache directives to "lock down" phphtmllib after installation in |
6 |
# the web root on your production machine. This doesn't *have* to happen-- no |
7 |
# critical information will be displayed if it is not done. |
8 |
# |
9 |
# USAGE |
10 |
# 1. rename this file to .htaccess (for this to work AllowOverride All needs to be set some- |
11 |
# where in httpd.conf) You can also place these directives in the appropriate directory |
12 |
# block in your httpd.conf file if you have access. |
13 |
# 2. You can delete these directories: test, doc, examples. They are not needed in production. |
14 |
# |
15 |
# |
16 |
|
17 |
<files *.inc> |
18 |
Deny from All |
19 |
</files> |
20 |
|
21 |
<files ~ "(CHANGELOG|INSTALL|LICENSE|TODO)"> |
22 |
Deny from All |
23 |
</files> |