35 lines
894 B
Plaintext
35 lines
894 B
Plaintext
|
|
|||
|
Configuration local
|
|||
|
===================
|
|||
|
|
|||
|
Utilisation d'un fichier .htaccess pour g<>rer les RewriteRules et autres configuration d'apache et de php
|
|||
|
|
|||
|
|
|||
|
Configuration vhost
|
|||
|
===================
|
|||
|
|
|||
|
<VirtualHost *:80>
|
|||
|
ServerAdmin webmaster@extranet.devlocal.com
|
|||
|
ServerName extranet.devlocal.com
|
|||
|
AddDefaultCharset iso-8859-1
|
|||
|
DocumentRoot "D:/www/extranet/www"
|
|||
|
<Directory "D:/www/extranet/">
|
|||
|
Options Indexes FollowSymLinks ExecCGI
|
|||
|
AcceptPathInfo On
|
|||
|
AllowOverride All
|
|||
|
Order allow,deny
|
|||
|
Allow from all
|
|||
|
</Directory>
|
|||
|
|
|||
|
<IfModule mod_rewrite.c>
|
|||
|
RewriteLog "logs/extranet.devlocal.com-rewrite.log"
|
|||
|
#RewriteLogLevel 3
|
|||
|
</IfModule>
|
|||
|
|
|||
|
# Possible values include: debug, info, notice, warn, error, crit, alert, emerg.
|
|||
|
LogLevel debug
|
|||
|
ErrorLog "logs/extranet.devlocal.com-error.log"
|
|||
|
CustomLog "logs/extranet.devlocal.com-access.log" common
|
|||
|
|
|||
|
</VirtualHost>
|