You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl@perl.apache.org by paquito <pa...@mailroom.com> on 2000/07/05 15:37:21 UTC

proxy question.

I want to pass by proxy a request. The code is this:

        $r->proxyreq(1);
        $r->uri("http://myhost.com/index.html");
        $r->filename("proxy:http://myhost.com/index.html")
        $r->handler("proxy-server");
        return OK;

set it in the uri translation phase, but doesn't work. 

Any suggestions?