Thread

Posted on Wed Mar 16 17:36:16 2005 by szabgab
reverse proxy
How can I setup a reverse proxy using HTTP::Proxy ?

I'd like to - without configuring the browser - point it to http://proxy.myhost.com/www.perl.org/ and then see the content of www.perl.org in my browser after it passed through my proxy.

Direct Responses: 233 | Write a response
Posted on Wed Mar 16 19:25:53 2005 by eserte in response to 230
Re: reverse proxy
I don't think you need HTTP::Proxy in this case --- just create a normal CGI or mod_perl application which uses, say, the path_info-part to get the URL and LWP::UserAgent to fetch the contents of this URL.
Write a response