The objective of this excercise is to get Apache and Tomcat connected, we want Apache the default web server that serves the port 80 to forward requests to Tomcat - Railo.
The end goal for me in this case, is to get Apache / Tomcat / Railo to serve up http://personal.ecommerce2
Note, this post is really based on very excellent series on installing multiple ColdFusion servers by Dave Shuck: Installing-Railo-under-Tomcat-with-Apache-webserver
Next, I need to add the site definition to the Tomcat’s server.xml - which in my case located on C:\opt\railo\tomcat\conf\server.xml
I added this bit at the end of the file (between the closing Host tag and closing Engine tag):
<Host name="personal.cbcommerce2" appBase="C:/prj/personal/cbcommerce" unpackWARs="true"
autoDeploy="true" xmlValidation="true" xmlNamespaceAware="false">
<Context path="" docBase="" reloadable="true" privileged="true" antiResourceLocking="false" anitJARLocking="false" />
</Host>