medinadato / mdn-sample
There is no license information available for the latest version (dev-master) of this package.
MDN sample
dev-master
2013-01-04 01:14 UTC
Requires
This package is not auto-updated.
Last update: 2026-04-25 22:01:01 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>