I posted a question on the mod-perl list since I thought this could be
done via apache. Here is a response I got that indicates it can be done
with Apache (not needing mod-perl)

>For example, requests to
>
>domA.com:80 ---> 192.168.1.1:80
>domB.com:80 ---> 192.168.1.2:80

This is probably off-topic if it can be done without mod-perl :P

<VirtualHost domA.com>

  ProxyPass / http://192.168.1.1/
  ProxyPassReverse / http://192.168.1.1/

</VirtualHost>

</VirtualHost domB.com>

  ProxyPass / http://192.168.1.2/
  ProxyPassReverse / http://192.168.1.2/

</VirtualHost>



I don't have time to try this right now, but am interested in the result.

hth
charles



-- 
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.

Reply via email to