Hi there,
this is - for sure - pretty easy to solve but I'm a bit stuck right now...
I want to add a prefix to my apache-vhost access and error logs depending on what kind of application is installed on this vhost
Right now my config looks something like this:
port => '80',
docroot => '/var/www/html/someprettywebsite',
}
which produces two log files:
/var/log/http/vhost.example.com_error.log
/var/log/http/vhost.example.com_access.log
but what I want is something like:
/var/log/http/wordpress_vhost.example.com_error.log
/var/log/http/wordpress_vhost.example.com_access.log
I've tried things like the example below, but didn't work :(
port => '80',
docroot => '/var/www/html/someprettywebsite',
access_log_file => "wordpress_${access_log_file}",
}
Any suggestions are welcome,
Denny