I run a lot of VirtualHosts within Apache, none of them all that exciting. Is there an easier way than to specify php_value error_log /var/log/www-site/error.log for each VirtualHost?
Every VirtualHost always has its ErrorLog set:
<VirtualHost *:443>
DocumentRoot /var/www-site
ServerName site.me
ServerAlias www.site.me
CustomLog /var/log/www-site/access.log combined
ErrorLog /var/log/www-site/error.log
</VirtualHost>
Is there a setting in Apache where it enables you to log PHP errors to Apache its error log files by default, without having to specify it?