medinadato / mdn-sample
MDN sample
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/medinadato/mdn-sample
Requires
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>