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.
Posted on Wed Mar 16 19:25:53 2005
by esertein 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.