Lines Matching refs:vhost
40 my ($vhost) = split (/\s/, $log_line);
47 $vhost = lc ($vhost) || "access";
49 # if the vhost contains a "/" or "\", it is illegal so just use
52 if ($vhost =~ m#[/\\]#) { $vhost = "access" }
57 if (! $log_file{$vhost}) {
58 open $log_file{$vhost}, ">>${vhost}.log"
59 or die ("Can't open ${vhost}.log");
67 print {$log_file{$vhost}} $log_line;