<VirtualHost *:8000>
ServerName 127.0.0.1:8000
ServerAlias 127.0.0.1:8000
DocumentRoot /var/www/project
<Directory /var/www/project>
AllowOverride All
Order Allow,Deny
Allow from All
</Directory>
# uncomment the following lines if you install assets as symlinks
# or run into problems when compiling LESS/Sass/CoffeeScript assets
# <Directory /var/www/project>
# Options FollowSymlinks
# </Directory>
ErrorLog /var/log/apache2/project_error.log
CustomLog /var/log/apache2/project_access.log combined
</VirtualHost>