DirectoryIndex index.php index.html
{# Set up VirtualHosts - servername and documentroot are required. #}
{% for vhost in apache_vhosts %}
ServerName {{ vhost.servername }}
DocumentRoot {{ vhost.documentroot }}
{% if vhost.serveradmin is defined %}
ServerAdmin {{ vhost.serveradmin }}
{% endif %}
AllowOverride All
Options -Indexes FollowSymLinks
Order allow,deny
Allow from all
{% if vhost.extra_parameters is defined %}
{{ vhost.extra_parameters }}
{% endif %}
{% endfor %}