tbrehm
2012-06-05 15c949b3e55d425db65fee1377df5bf220cb640d
commit | author | age
db81c7 1
T 2
3 ################################################
4 # ISPConfig Logfile configuration for vlogger
5 ################################################
6
99481a 7 LogFormat "%v %h %l %u %t \"%r\" %>s %B \"%{Referer}i\" \"%{User-Agent}i\"" combined_ispconfig
15c949 8 CustomLog "| /usr/local/ispconfig/server/scripts/vlogger -s access.log -t \"%Y%m%d-access.log\" /var/log/ispconfig/httpd" combined_ispconfig
db81c7 9
99cb22 10 <Directory /var/www/clients>
T 11     AllowOverride None
12     Order Deny,Allow
13     Deny from all
14 </Directory>
15
f3d383 16 # Do not allow access to the root file system of the server for security reasons
T 17 <Directory />
18        AllowOverride None
19        Order Deny,Allow
20        Deny from all
21 </Directory>
22
3a7411 23 <Directory /var/www/conf>
T 24     AllowOverride None
25     Order Deny,Allow
26     Deny from all
27 </Directory>
28
f3d383 29 # Except of the following directories that contain website scripts
T 30 <Directory /usr/share/phpmyadmin>
31         Order allow,deny
32         Allow from all
33 </Directory>
34
5734aa 35 <Directory /usr/share/phpMyAdmin>
T 36         Order allow,deny
37         Allow from all
38 </Directory>
39
f3d383 40 <Directory /usr/share/squirrelmail>
T 41         Order allow,deny
42         Allow from all
43 </Directory>
44
fe1366 45 # allow path to awstats and alias for awstats icons
T 46 <Directory /usr/share/awstats>
47         Order allow,deny
48         Allow from all
49 </Directory>
50
9f56bd 51 Alias /awstats-icon "/usr/share/awstats/icon"
db81c7 52