<VirtualHost *:80>
	ServerName {$domain}
	ServerAlias www.{$domain}
	ServerAdmin webmaster@localhost
	DocumentRoot {$documentRoot}

	<Directory {$documentDirectory}>
		Options FollowSymLinks Indexes Includes
		AllowOverride All
		Require all granted
		Allow from all
	</Directory>

	ErrorLog ${APACHE_LOG_DIR}/{$domainLog}_error.log
	CustomLog ${APACHE_LOG_DIR}/{$domainLog}_access.log combined
</VirtualHost>
