Skip to content

jingjangjung/webapp-template

 
 

Repository files navigation

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>

About

My template for ZF2 based web application project

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 50.5%
  • HTML 29.7%
  • JavaScript 17.4%
  • CSS 1.4%
  • ApacheConf 1.0%