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