Once in about 100 years we get zero response
from our mod_perl server (Proxy error). 

The situation: there are 2 apaches, FrontEnd without mod_perl and BackEnd with
mod_perl. They communicate with rewriterules (mod_rewrite and mod_proxy).

httpd.conf contains:
    RewriteEngine On 
    NoCache *
    RewriteRule .*(script\.pl)$ http://localhost:8888/perl/script.pl [proxy]
    ProxyPassReverse    /cgi-bin/ http://localhost:8000/perl/
and httpd-perl.conf has:

    <Location /perl>
         SetHandler  perl-script
         PerlHandler Apache::Registry
         PerlModule Apache::DBI
         PerlSendHeader Off
         Options +ExecCGI
    </Location>

(I didn't write these config lines)

BTW We wanted to use same apache for testing beta site along with the live
one. The perl modules used have the same name but are for different virt.
hosts, have different locations and different content and the
errors (getting content from beta modules when asking for live site) are
probably because of that. 

We'll try putting two apache binaries to be able to
test it.

-- 


Best regards,

Miroslav Madzarevic, Senior Perl Programmer
[EMAIL PROTECTED]
Mod Perl Development http://www.modperldev.com
Telephone: +381 64 1193 501
jamph 
$_=",,.,,.,,,,,,,.,,,.,,,,,,,..,,.,,,,,,,,,,,.,,,,,.,,,";
s/\s//gs;tr/,./05/;my(@a,$o,$i)=split//;$_=<DATA>;tr/~`'"^/0-4/;map{$o
.=$a[$i]+$_;$i++}split//;@a=$o=~m!...!g;map{print chr}@a; __DATA__
`~^`~~``^`~`~`^``~`~``''~^'`~^``'``^```~^``'```'~`~

Reply via email to