Hi, I'm running an AMI with Bitnami moodle stack and now I want to add tomcat 7 on the same AMI. I installed the JVM and tomcat 7 and tomcat works fine on 8080. Now I want to connect tomcat with apache. In order to test if all works, I added the following line to httpd.conf
<Location /tomcat>
ProxyPass ajp://localhost:8009/examples
</Location>
But I always get 404 file not found when I point to: http:://<myserver>/tomcat
How can I configur apache to make it working with tomcat?
Many thanks in advance