medinadato/mdn-sample

There is no license information available for the latest version (dev-master) of this package.

MDN sample

Installs: 10

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/medinadato/mdn-sample

dev-master 2013-01-04 01:14 UTC

This package is not auto-updated.

Last update: 2025-09-27 19:28:36 UTC


README

#MDN Sample

This is only a composer package test. Don't take it serious.

##Install

###Setting Up Your VHOST

The following is a sample VHOST you might want to consider for your project.

<VirtualHost *:80>
   DocumentRoot "/whatever"
   ServerName local.mdn-sample

   # This should be omitted in the production environment
   SetEnv APPLICATION_ENV development

   <Directory "/whatever">
       Options Indexes MultiViews FollowSymLinks
       AllowOverride All
       Order allow,deny
       Allow from all
   </Directory>

</VirtualHost>