Different Apache log file for each subdomain?
- by consolibyte
Is it possible to configure Apache to use a different log file for each subdomain, even if all of the subdomains are within the same VirtualHost container?
So, I have only one VirtualHost:
<VirtualHost *:80>
ServerName example.com
ServerAlias test1.example.com test2.example.com test3.example.com
</VirtualHost>
And I want to end up with the following log files:
/var/log/httpd-access_test1.log
/var/log/httpd-access_test2.log
/var/log/httpd-access_test3.log
I know I can probably do this with a custom log format and split-logs, but I was wondering if there's a way to just have Apache do it for me.