37 lines
983 B
Plaintext
37 lines
983 B
Plaintext
README
|
|
======
|
|
|
|
This directory should be used to place project specfic documentation including
|
|
but not limited to project notes, generated API/phpdoc documentation, or
|
|
manual files generated or hand written. Ideally, this directory would remain
|
|
in your development environment only and should not be deployed with your
|
|
application to it's final production location.
|
|
|
|
|
|
Setting Up Your VHOST
|
|
=====================
|
|
|
|
Exemple de vhost en mode développement
|
|
|
|
<VirtualHost *:80>
|
|
ServerName scoresws.sd.dev
|
|
AddDefaultCharset utf-8
|
|
DocumentRoot "D:/www/scoresws/public"
|
|
|
|
SetEnv APPLICATION_ENV "development"
|
|
|
|
<Directory "D:/www/scoresws/public/">
|
|
DirectoryIndex index.php
|
|
AllowOverride All
|
|
Order allow,deny
|
|
Allow from all
|
|
</Directory>
|
|
|
|
# Possible values include: debug, info, notice, warn, error, crit, alert, emerg.
|
|
LogLevel debug
|
|
ErrorLog "logs/scoresws.sd.dev-error.log"
|
|
CustomLog "logs/scoresws.sd.dev-access.log" common
|
|
</VirtualHost>
|
|
|
|
|