I'm trying to build a configuration with some customlogs. Here's what I tried unsuccessfully, someone could give me any hint about it ?
$VirtualHost{$vhost}={
ServerName=>$HostName,
ServerAlias=>$ServerAliases,
DocumentRoot=>$ebd->{ApacheDocumentRoot},
CustomLog=>[
"$log_proxy combined-proxy env=proxy",
"$log_no_proxy combined env=!proxy"
],
....
}I also tried:
CustomLog=>{
$log_proxy => 'combined-proxy env=proxy',
$log_no_proxy => 'combined env=!proxy'
}, CustomLog=>{
'combined-proxy env=proxy' => $log_proxy
'combined env=!proxy' => $log_no_proxy
},I only can make it work if I only have one CustomLog entry in a scalar but I need both.
Thank you for your time.
-- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html
