I am using mod_proxy on Apache 1.3.26 to Pass Request to IIS Server on Windows 2000 Server on my local Intranet.
I have setup the following scenario:
<VirtualHost *>
ServerName web1.myip.org
ProxyRequests On
ProxyVia On
ProxyPass / http://192.168.0.2/
</VirtualHost>
<VirtualHost *>
ServerName web2.myip.org
ProxyRequests On
ProxyVia On
ProxyPass / http://192.168.0.2/
</VirtualHost>
They both return the Default Website on IIS. Is it possible to send Header with mod_proxy so that IIS Knows which Website to load?