18 lines
499 B
Plaintext
18 lines
499 B
Plaintext
<VirtualHost *:80>
|
|
ServerName extranet.scores-decisions.com
|
|
AddDefaultCharset utf-8
|
|
DocumentRoot "D:/www/extranet-2.0/public"
|
|
|
|
SetEnv APPLICATION_ENV "development"
|
|
|
|
<Directory "D:/www/extranet-2.0/public/">
|
|
AllowOverride All
|
|
Order allow,deny
|
|
Allow from all
|
|
</Directory>
|
|
|
|
# Possible values include: debug, info, notice, warn, error, crit, alert, emerg.
|
|
LogLevel debug
|
|
ErrorLog "logs/extranet20.sd.dev-error.log"
|
|
CustomLog "logs/extranet.sd.dev-access.log" common
|
|
</VirtualHost> |