How do I connect my tomcat app to apache 2 so the paths aren't lame? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T13:08:41Z http://stackoverflow.com/feeds/question/230644 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/230644/how-do-i-connect-my-tomcat-app-to-apache-2-so-the-paths-arent-lame 0 How do I connect my tomcat app to apache 2 so the paths aren't lame? danb 2008-10-23T17:29:24Z 2009-04-01T22:09:44Z <p>I've got a tomcat instance with several apps running on it... I want the root of my new domain to go to one of these apps (context path of blah).. so I have the following set up:</p> <pre><code>&lt;Location /&gt; ProxyPass ajp://localhost:8025/blah ProxyPassReverse ajp://localhost:8025/blah &lt;/Location&gt; </code></pre> <p>it kinda works... going to mydomain.com/index.jsp works except the app still thinks it needs to add the /blah/ to everything like css and js.. is there something I can do without deploying the app to ROOT or changing the tomcat server config? I'd like to keep all this kind of thing on the apache side, if it's possible.</p> <p>I'm thinking I may not be understanding the proxypassreverse directive.. </p> http://stackoverflow.com/questions/230644/how-do-i-connect-my-tomcat-app-to-apache-2-so-the-paths-arent-lame/231723#231723 0 Answer by danb for How do I connect my tomcat app to apache 2 so the paths aren't lame? danb 2008-10-23T22:03:17Z 2008-10-23T22:03:17Z <p>it looks like this is kind of a <a href="http://dltj.org/article/apache-httpd-and-tomcat/" rel="nofollow">pain in the rear</a>.</p> <p>apache is literally rewriting pages as it serves them... </p> <p>I think I'll go a different route.</p> http://stackoverflow.com/questions/230644/how-do-i-connect-my-tomcat-app-to-apache-2-so-the-paths-arent-lame/237697#237697 2 Answer by f4nt for How do I connect my tomcat app to apache 2 so the paths aren't lame? f4nt 2008-10-26T07:38:15Z 2008-10-26T07:38:15Z <p>If you're wanting to server the app the /, Tomcat expects the app to be mounted at /, and have the name of ROOT. At least that's how I've always handled the situation personally. Even if you just symlink the app into ROOT, that should mitigate your problems. If you have an app placed in ${tomcat_home}/webapps/newapp, then Tomcat deploys it with a context of /newapp. At least, that's been the case in my history. Also, not sure if it matters but I've always used:</p> <pre><code>ProxyPass / ajp://localhost:8025/blah ProxyPassReverse / ajp://localhost:8025/blah </code></pre> http://stackoverflow.com/questions/230644/how-do-i-connect-my-tomcat-app-to-apache-2-so-the-paths-arent-lame/707544#707544 0 Answer by Matt Woodward for How do I connect my tomcat app to apache 2 so the paths aren't lame? Matt Woodward 2009-04-01T22:09:44Z 2009-04-01T22:09:44Z <p>If you configure hosts on the Tomcat side as well then you can proxy to them and eliminate the context path for non-root webapps--in Tomcat server.xml:</p> <pre><code>&lt;Host name="myhost"&gt; &lt;Context path="" docBase="/path/to/files" /&gt; &lt;/Host&gt; </code></pre> <p>And on the Apache side:</p> <pre><code>&lt;VirtualHost *:80&gt; ServerName myhost ProxyPass / ajp://myhost:8009/ ProxyPassReverse / ajp://myhost:8009/ &lt;/VirtualHost&gt; </code></pre> <p>Hope that helps.</p>