blob: cca72cc083d1381a59151228c0e5a37b7889471c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#
# Apache/PHP/site settings:
#
# Archive feature:
<Files archive>
ForceType application/x-httpd-php
</Files>
# Protect .inc files:
# .inc files can be read from the web so make sure we keep it
# away from the casual prying eyes. Especially `config.inc'.
<Files *.inc>
order deny,allow
deny from all
</Files>
# Protect CVS directories:
<Files *CVS>
order deny,allow
deny from all
</Files>
# Protect theme directories:
<Files *themes>
order deny,allow
deny from all
</Files>
# Customized server error messages:
ErrorDocument 400 /error.php
ErrorDocument 402 /error.php
ErrorDocument 403 /error.php
ErrorDocument 404 /error.php
ErrorDocument 500 /error.php
# Overload PHP variables:
<IfModule mod_php4.c>
php_value magic_quotes_gpc On
php_value magic_quotes_runtime Off
php_value magic_quotes_sybase Off
php_value session.cookie_lifetime 1728000
php_value session.gc_maxlifetime 1728000
php_value session.name DROPID
</IfModule>
|