up vote 0 down vote favorite
1
share [g+] share [fb]

I have two applications in Tomcat app1 and app2.

I have mod_jk configured for Apache front end and I am able to get the Tomcat index.jsp

Now I created two virtualhosts for app1 and app2 so that app1.domain.com will point to app1 in tomcat and app2.domain.com will point to app2 in Tomcat but it's not working.

I have the Vhost as

<VirtualHost *:80>
ServerName www.app1.domain.com
ServerAlias app1.domain.com
DocumentRoot "/opt/tomcat/webapps/app1"
<Directory "/opt/tomcat/webapps/app1">
  DirectoryIndex index.jsp
  Options Indexes FollowSymLinks
  AllowOverride None
  Order allow,deny
  Allow from all
</Directory>
###### The following section added for Jk
JkMount /*.do ajp13
JkMount /*.jsp ajp13
JkMount / ajp13
JkMount /* ajp13
JkUnMount /*.php ajp13
JkUnMount /*.gif ajp13
JkUnMount /*.html ajp13
JkUnMount /*.css ajp13
JkUnMount /*.png ajp13
JkUnMount /*.jpg ajp13
######
#</Directory>
</VirtualHost>

But this did not work both the sub domains loads Tomcat's index.jsp.

Can some one help me?

Thanks

link|improve this question

22% accept rate
Abandon mod_jk and use mod_proxy_ajp instead. – al. Dec 23 '11 at 10:11
feedback

1 Answer

I got it I done it through a RewriteRule.

Thanks, Anoop

link|improve this answer
It would have been nice if you posted your solution here. – delux247 Jun 25 '10 at 21:14
Hi, Sorry I was on vacation. Did you get it solved? Do you need any help? – user37143 Jul 9 '10 at 5:57
@user37143 I think the point is to catalog the solution here so other people can benefit from it. – Corey S. Apr 4 '11 at 2:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.