|
################################################
|
# ISPConfig Logfile configuration for vlogger
|
################################################
|
|
LogFormat "%v %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined_ispconfig
|
CustomLog "| /usr/local/ispconfig/server/scripts/vlogger -s access.log -t \"%Y%m%d-access.log\" /var/log/ispconfig/httpd" combined_ispconfig
|
|
<IfModule mod_headers.c>
|
<LocationMatch "/.well-known/acme-challenge/*">
|
Header set Content-Type "text/plain"
|
</LocationMatch>
|
</IfModule>
|
|
<Directory /var/www/clients>
|
AllowOverride None
|
<tmpl_if name='apache_version' op='>' value='2.2' format='version'>
|
Require all denied
|
<tmpl_else>
|
Order Deny,Allow
|
Deny from all
|
</tmpl_if>
|
</Directory>
|
|
# Do not allow access to the root file system of the server for security reasons
|
<Directory />
|
AllowOverride None
|
<tmpl_if name='apache_version' op='>' value='2.2' format='version'>
|
Require all denied
|
<tmpl_else>
|
Order Deny,Allow
|
Deny from all
|
</tmpl_if>
|
</Directory>
|
|
<Directory /var/www/conf>
|
AllowOverride None
|
<tmpl_if name='apache_version' op='>' value='2.2' format='version'>
|
Require all denied
|
<tmpl_else>
|
Order Deny,Allow
|
Deny from all
|
</tmpl_if>
|
</Directory>
|
|
# Except of the following directories that contain website scripts
|
<Directory /usr/share/phpmyadmin>
|
<tmpl_if name='apache_version' op='>' value='2.2' format='version'>
|
Require all granted
|
<tmpl_else>
|
Order allow,deny
|
Allow from all
|
</tmpl_if>
|
</Directory>
|
|
<Directory /usr/share/phpMyAdmin>
|
<tmpl_if name='apache_version' op='>' value='2.2' format='version'>
|
Require all granted
|
<tmpl_else>
|
Order allow,deny
|
Allow from all
|
</tmpl_if>
|
</Directory>
|
|
<Directory /srv/www/htdocs>
|
<tmpl_if name='apache_version' op='>' value='2.2' format='version'>
|
Require all granted
|
<tmpl_else>
|
Order allow,deny
|
Allow from all
|
</tmpl_if>
|
</Directory>
|
|
<Directory /usr/share/squirrelmail>
|
<tmpl_if name='apache_version' op='>' value='2.2' format='version'>
|
Require all granted
|
<tmpl_else>
|
Order allow,deny
|
Allow from all
|
</tmpl_if>
|
</Directory>
|
|
# Allow access to mailman on OpenSuSE
|
<Directory /usr/lib/mailman/cgi-bin>
|
<tmpl_if name='apache_version' op='>' value='2.2' format='version'>
|
Require all granted
|
<tmpl_else>
|
Order allow,deny
|
Allow from all
|
</tmpl_if>
|
</Directory>
|
|
<Directory /usr/lib/mailman/icons>
|
<tmpl_if name='apache_version' op='>' value='2.2' format='version'>
|
Require all granted
|
<tmpl_else>
|
Order allow,deny
|
Allow from all
|
</tmpl_if>
|
</Directory>
|
|
<Directory /var/lib/mailman/archives/>
|
Options +FollowSymLinks
|
<tmpl_if name='apache_version' op='>' value='2.2' format='version'>
|
Require all granted
|
<tmpl_else>
|
Order allow,deny
|
Allow from all
|
</tmpl_if>
|
</Directory>
|
|
# allow path to awstats and alias for awstats icons
|
<Directory /usr/share/awstats>
|
<tmpl_if name='apache_version' op='>' value='2.2' format='version'>
|
Require all granted
|
<tmpl_else>
|
Order allow,deny
|
Allow from all
|
</tmpl_if>
|
</Directory>
|
|
<tmpl_if name='apache_version' op='<' value='2.4' format='version'>
|
Alias /awstats-icon "/usr/share/awstats/icon"
|
</tmpl_if>
|
|
NameVirtualHost *:80
|
NameVirtualHost *:443
|
<tmpl_loop name="ip_adresses">
|
NameVirtualHost {tmpl_var name="ip_address"}:{tmpl_var name="port"}
|
</tmpl_loop>
|