This is a simple, skeleton application using the ZF2 MVC layer for use a start point to develop web applications.
To setup apache, setup a virtual host to point to the public/ directory of the project and you should be ready to go! It should look something like below:
<VirtualHost *:80>
ServerName template.local
DocumentRoot /path/to/template/public
SetEnv APPLICATION_ENV "development"
<Directory /path/to/template/public>
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>