<!-- snip -->
[EMAIL PROTECTED] wrote:
> I have an internal server that I need to pass external visitors to
> from a web page.  The internal server isn't set up to go through the
> firewall so I am looking for a way to make web server (which does
> play nice) to access the other server via http and let a user access
> the files and programs on it.
> 
> I've been looking through the FAQs and googling it, but have not
> found a way to do it yet.

That's called proxying. See the Apache mod_proxy module (if you're using
Apache):

http://httpd.apache.org/docs/mod/mod_proxy.html
<!-- snap -->
my httpd.conf file:

ProxyRequests Off

ProxyPass /foo http://foo.example.com/bar
ProxyPassReverse /foo http://foo.example.com/bar 

I get the issue when I am accessing the page, the whole thing is a java
program that I am accessing, and it is not able to find any of the files
when I do it via proxy.  I don't have a way to access the files yet (trying
to figure out how to do that as well) since it is a closed-system that I am
trying to get this proxy/forwarding to work with.

????

--------------------------------------------------------------------
mail2web - Check your email from the web at
http://mail2web.com/ .



--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to