Hi all, i'm using apache2, and i'm tring to have seperate access.log for each virtual hostname, here is what i tried but apache won't start
<VirtualHost *>
ServerName localhost
DocumentRoot "C:/Apache2/htdocs"
#CustomLog logs/access.log
ServerAdmin webmaster@mycompany.com
<Directory "C:/Apache2/htdocs" >
Options Indexes IncludesNOEXEC
Order allow,deny
Allow from all
TransferLog c:/apache2/logs/access.log
</Directory>
</VirtualHost>
Another silly questin, what is the difference between Cutomlog and transferlog ?
what am i doing wrong that make apache won't start with the transferlog line in, if i take it out, it will start with no problem,
Thanks alot in advance
Maximos Tadros
<VirtualHost *>
ServerName localhost
DocumentRoot "C:/Apache2/htdocs"
#CustomLog logs/access.log
ServerAdmin webmaster@mycompany.com
<Directory "C:/Apache2/htdocs" >
Options Indexes IncludesNOEXEC
Order allow,deny
Allow from all
TransferLog c:/apache2/logs/access.log
</Directory>
</VirtualHost>
Another silly questin, what is the difference between Cutomlog and transferlog ?
what am i doing wrong that make apache won't start with the transferlog line in, if i take it out, it will start with no problem,
Thanks alot in advance
Maximos Tadros