<VirtualHost *:80>
	ServerAdmin webmaster@localhost

	DocumentRoot /vagrant/wordpress
	RewriteLogLevel 9
	RewriteLog ${APACHE_LOG_DIR}/vagrant.rewrite.log

	<Directory /vagrant/wordpress>
	    Options Indexes FollowSymLinks
	    AllowOverride None
	    RewriteEngine On
	    RewriteBase /
	    RewriteRule ^index\.php$ - [L]
	    RewriteCond %{REQUEST_FILENAME} !-f
	    RewriteCond %{REQUEST_FILENAME} !-d
	    RewriteRule . /index.php [L]
	</Directory>

	ErrorLog ${APACHE_LOG_DIR}/vagrantpress.error.log

	# Possible values include: debug, info, notice, warn, error, crit,
	# alert, emerg.
	LogLevel warn

	CustomLog ${APACHE_LOG_DIR}/vagrantpress.access.log combined
</VirtualHost>
