Re: mod_perl/mod_proxy with Apache 2.2

2005-12-23 Thread Srebrenko Sehic
Try $r->proxyreq(2) and it will work. On 12/22/05, Arnaud Desmons <[EMAIL PROTECTED]> wrote: > Hi, > > Is this still supposed to work in TransHandler with Apache 2.2 ? > > sub handler { > my $r = shift; > > my $uri = $r->uri; > $r->filename("proxy:http://test:4949"

mod_perl/mod_proxy with Apache 2.2

2005-12-22 Thread Arnaud Desmons
Hi, Is this still supposed to work in TransHandler with Apache 2.2 ? sub handler { my $r = shift; my $uri = $r->uri; $r->filename("proxy:http://test:4949".$uri); $r->handler('proxy-server'); $r->proxyreq(1); return Apache2::Const::