Hi there, I have a problem I have a Debian server running an apache2 (directly connected to the internet) and a win2003 svr running an IIS on a private lan (named thissar). If I type the public IP of the Debian I can see the site served on the debian, and I want to publish some sites on the 2003 svr. The way is http://123.456.78.90/ I see the Debian apache If I type the http://123.456.78.90/thissar I want to see the IIS. On the sites-available folder I have a 2003 file which contains: <IfModule mod_proxy.c> ProxyRequests On ProxyPreserveHost Off ProxyVia full <Location "/thissar"> Order deny,allow Allow from all ProxyPass http://172.16.141.128/ ProxyPassReverse http://172.16.141.128/ </Location> </IfModule> But I cannot see anything of that IIS. Can anybody help me please? What I'm doing wrong or missing? Thx in advance