error_log per Virtual Host?
apache, linux, virtualhost
Solution
To set the Apache (not the PHP) log, the easiest way to do this would be to do:
<VirtualHost IP:Port>
# Stuff,
# More Stuff,
ErrorLog /path/where/you/want/the/error.log
</VirtualHost>
If there is no leading "/" it is assumed to be relative.
Apache Error Log Page
Problem
On one Linux Server running Apache and PHP 5, we have multiple Virtual Hosts with separate log files. We cannot seem to separate the php `error_log` between virtual hosts. Overriding this setting in the `<Location>` of the `httpd.conf` does not seem to do anything. Is there a way to have separate php `error_logs` for each Virtual Host?