Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 755 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 755 Bytes

ZendSkeletonApplication

Introduction

This is a simple, skeleton application using the ZF2 MVC layer for use a start point to develop web applications.

Web Server Setup

Apache Setup

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>