Configuring Apache with Tomcat and phpmyadmin

Posted by elect on Server Fault See other posts from Server Fault or by elect
Published on 2012-06-29T18:11:30Z Indexed on 2012/06/30 15:18 UTC
Read the original article Hit count: 307

Filed under:
|
|
|

We have a server with Apache 2.4, Tomcat 7 and phpmyadmin, all of them installed by source, no repository.

I connected Apache with Tomcat through the jk connector by doing:

JkMount  /* worker1

and I moved /phpmyadmin in the Apache DocumentRoot, but of course website/phpmyadmin will redirect me to Tomcat, but I dont want that. It works only if I comment out the JKMount line

So, how can I configure Apache with Tomcat and phpmyadmin so that /* requests are forwarded to Tomcat and /phpmyadmin directly served by Apache?

© Server Fault or respective owner

Related posts about apache2

Related posts about tomcat