<VirtualHost *:80>
	ServerAdmin {{ADMINS.0.1}}

	Alias /robots.txt {{MEDIA_ROOT}}/robots.txt
	Alias /favicon.ico {{MEDIA_ROOT}}/favicon.ico

	Alias {{MEDIA_URL}} {{MEDIA_ROOT}}/
	Alias {{ADMIN_MEDIA_PREFIX}} {{PROJECT_ROOT}}{{ADMIN_MEDIA_PREFIX}}

	<Directory {{MEDIA_ROOT}}>
	Order deny,allow
	Allow from all
	</Directory>

	WSGIScriptAlias / {{CONFIG_GEN_GENERATED_DIR}}/django.wsgi

	<Directory {{CONFIG_GEN_GENERATED_DIR}}>
	Order allow,deny
	Allow from all
	</Directory>

	ErrorLog {{LOG_DIR}}/apache2_error.log

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

	CustomLog {{LOG_DIR}}/apache2_access.log combined

</VirtualHost>
