hi,
I would like to drop by doubt on apache;

assume; I have apache proxy sittin on linux (DMZ zone)
and my web server sitting on the Lan.

         10.1.1.2  my proxy
             l
             l
         10.1.1.1  my server

assume that the site on the server that is open to the
proxy is http://10.1.1.1/Windchill-login

my httpd.conf of the proxy is as follow;

<IfModule mod_proxy.c>
  ProxyRequests On
  LogFormat "%h %l %u %t \"%r\" %>s %b" common
  CustomLog logs/proxy_log common

  <Location />
     Order Deny,Allow
     deny from all
  </Location>

  <Directory proxy:*>
     Order Deny,Allow
     deny from all
     Allow from all
  </Directory>
</IfModule>

assuming that I am not using cache
My question;
1. how do the proxy communicate to my server
   (http://10.1.1.1/Windchill-login)
Because I can not see the link between my proxy and my
server.

2. What should I put on the httpd.conf of the proxy
in order; by typing http://10.1.1.2/Windchill, it will
talk to my web server http://10.1.1.1/Windchill-login


Thank you very much for reading my doubt.

regards

hendri



_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.



Reply via email to