Forum Moderators: phranque
EX: www.somesite.com points to XX.XX.XX.XXX:80
www.othersite.com points to XX.XX.XX.XXX:8080
(replace XX.XX.XX.XXX with your IP address)
Atleast this would be the simplest way I can think of. I am sure there are others out there that may have a better suggestion.
(assuming your BSD box is running on 192.168.1.10 and your XP host on 192.168.1.11):
NameVirtualHost 192.168.1.10:80<VirtualHost 192.168.1.10:80>
ServerName www.example.com
ServerAlias example.com
(other directives here)
</VirtualHost>
<VirtualHost 192.168.1.10:80>
ServerName xp.example.com
ProxyPass / http://192.168.1.11/
ProxyPassReverse / http://192.168.1.11/
(other directives here)
</VirtualHost>