{% for vhost in apache_vhosts %} ServerName {{ vhost.servername|lower }} ServerAlias {{ vhost.serveralias }} DocumentRoot {{ vhost.documentroot }} CustomLog {{ vhost.accesslog }} combined ErrorLog {{ vhost.errorlog }} Options none Allowoverride none Require all denied {% if use_php %} SetHandler proxy:fcgi://localhost:9000 {% endif %} Options {{ vhost.documentrootoptions|default( "none" ) }} Require all granted {% endfor %}