How to run a psyced with apache and mod_proxy

This is text from an actual named virtual host configuration where mod_proxy is deployed with a psyced instance:

<VirtualHost 70.38.5.65>
ServerName psyc.asciiking.com
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://70.38.5.65:8003/
ProxyPassReverse / http://70.38.5.65:8003/
</VirtualHost>

The IP address in VirtualHost is the one on which Apache is listening for requests for the domain(s) listed in ServerName and ServerAlias directives. The IP Address and port combination in the ProxyPass and ProxyPassReverse directives are those on which the psyced instance is listening.