On Tue, Mar 30, 2004 at 02:08:02PM -0600, Randy Paries wrote:
>
> Question 2::
> Anyone know how to filter out the ldirectord calls in the log file? (via
> httpd.conf)
You can separated the logfiles quite easily, since you're using virtual
hosts. Just do something like this (for example):
<VirtualHost 192.168.0.203 >
ServerName 192.168.0.203
ServerAlias unitnet.com
DocumentRoot /home/unitnet
ErrorLog /path/to/error_log
CustomLog /path/to/access_log combined
</VirtualHost>
So you get separate error and access logs for just this service.
Hope that helps.
Simon.
|