If I read your IPs correctly, you are trying to hand off to a different server?
If so, here's one way from the apache docs that works nicely
Code:
Using Virtual_host and mod_proxy together
The following example allows a front-end machine to proxy a virtual host through to a server
running on another machine. In the example, a virtual host of the same name is configured on
a machine at 192.168.111.2. The ProxyPreserveHost On directive is used so that the desired
hostname is passed through, in case we are proxying multiple hostnames to a single machine.
<VirtualHost *:*>
ProxyPreserveHost On
ProxyPass / http://192.168.111.2/
ProxyPassReverse / http://192.168.111.2/
ServerName hostname.example.com
</VirtualHost>