Re: Separate Error log for each virtual host

2009-01-17 Thread fREW Schmidt
I am not quite sure what I did differently, but the per server error log is working now. Here's the config if anyone wants it: VirtualHost *:8080 ErrorLog C:/path/to/acd/logs/error.log Perl use lib 'C:/path/to/acd'; $ENV{MODE} = 'development'; /Perl ScriptAlias /

Separate Error log for each virtual host

2009-01-16 Thread fREW Schmidt
I would like to configure apache such that the errors for a specific virtual host get logged in their own file. I tried something like this: VirtualHost *:8080 ErrorLog C:/location/of/acd/logs/error.log Perl use lib 'C:/location/of/acd'; $ENV{MODE} = 'development'; /Perl

Re: Separate Error log for each virtual host

2009-01-16 Thread Adam Prime
fREW Schmidt wrote: I would like to configure apache such that the errors for a specific virtual host get logged in their own file. I tried something like this: VirtualHost *:8080 ErrorLog C:/location/of/acd/logs/error.log Perl use lib 'C:/location/of/acd'; $ENV{MODE} =

Re: Separate Error log for each virtual host

2009-01-16 Thread fREW Schmidt
On Fri, Jan 16, 2009 at 9:59 AM, Adam Prime adam.pr...@utoronto.ca wrote: fREW Schmidt wrote: I would like to configure apache such that the errors for a specific virtual host get logged in their own file. I tried something like this: VirtualHost *:8080 ErrorLog

Re: Separate Error log for each virtual host

2009-01-16 Thread Adam Prime
fREW Schmidt wrote: Yeah, I have another virtualhost at *:80 with it's own ErrorLog directive, but of course it still doesn't seem to honor that and puts the errorlog in the default place anyway. This doesn't really have anything to do with mod_perl at all i think you might want to try

Re: Separate Error log for each virtual host

2009-01-16 Thread fREW Schmidt
Yeah, I have another virtualhost at *:80 with it's own ErrorLog directive, but of course it still doesn't seem to honor that and puts the errorlog in the default place anyway. This doesn't really have anything to do with mod_perl at all i think you might want to try removing all the mod_perl

Re: Separate Error log for each virtual host

2009-01-16 Thread Torsten Foertsch
On Fri 16 Jan 2009, fREW Schmidt wrote: I would like to configure apache such that the errors for a specific virtual host get logged in their own file.  I tried something like this: VirtualHost *:8080    ErrorLog C:/location/of/acd/logs/error.log    Perl       use lib 'C:/location/of/acd';