0

This question follows a mod_jk configuration question asked earlier. I have managed to to have http://mywebsite.com/MyTomcatApp/ go to Tomcat while having http://mywebsite.com/ go to Apache.

However, my requests to http://mywebsite.com:8080/ (to access Tomcat's manager for example) don't work anymore. How can/should I update my 000-default file mentioned in my previous question to keep access to Tomcat's manager under this configuration?

P.S.: Yes, I am a newbie/not a sysadmin.

Jérôme Verstrynge
  • 4,787
  • 7
  • 24
  • 35

1 Answers1

0

Ok, I think understand the role of JkUnMount better. I changed my 000-default file to:

JkMount /* worker1
JkUnMount /*.html worker1

All goes to tomcat and I have access to the manager again. The default Apache html page is still served.

Jérôme Verstrynge
  • 4,787
  • 7
  • 24
  • 35