Apache + Tomcat: Using mod_proxy instead of AJP - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T15:44:29Z http://stackoverflow.com/feeds/question/956361 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/956361/apache-tomcat-using-modproxy-instead-of-ajp 2 Apache + Tomcat: Using mod_proxy instead of AJP Marcus Downing 2009-06-05T15:05:23Z 2009-06-07T22:05:02Z <p>Is there any way I connect Apache to Tomcat using an HTTP proxy such that Tomcat gets the correct incoming host name rather than localhost? I'm using this directive in apache:</p> <pre><code>ProxyPass /path http://localhost:8080/path </code></pre> <p>But it comes through as localhost, which is useless when we have a bunch of sites on the same server. I could set the host manually in the server config:</p> <pre><code>&lt;Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" proxyName="pretend.host" proxyPort="80" /&gt; </code></pre> <p>But that again doesn't serve more than one site. And I don't like the idea of using a different internal port for each site, that sounds really ugly.</p> <p>Is there no way to transfer the port when I proxy it?</p> <p>(If you ask why I don't just use AJP, the answer is <a href="http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered">this error</a>. I'm trying everything I can before giving up on <a href="http://serverfault.com/questions/589/alternatives-to-apache">Tomcat and Apache entirely</a>)</p> http://stackoverflow.com/questions/956361/apache-tomcat-using-modproxy-instead-of-ajp/956702#956702 2 Answer by gareth_bowles for Apache + Tomcat: Using mod_proxy instead of AJP gareth_bowles 2009-06-05T16:01:44Z 2009-06-07T21:48:56Z <p>I think your best bet if you want multiple sites on the same server is to use virtual hosts in your Apache configuration. Here's an example:</p> <pre><code>&lt;VirtualHost *:80&gt; ServerName server.domain.com ProxyRequests Off &lt;Proxy *&gt; Order deny,allow Allow from all &lt;/Proxy&gt; ProxyPass / http://server.domain.com:8080/ ProxyPassReverse / http://server.domain.com:8080/ &lt;Location /&gt; Order allow,deny Allow from all &lt;/Location&gt; </code></pre> <p></p> <p>As long as you have server.domain.com registered in your external DNS, the incoming host name will be displayed in client URLs. I'm running a single server hosting 6 separate sites, including 3 that are back by Tomcat, using this method.</p> http://stackoverflow.com/questions/956361/apache-tomcat-using-modproxy-instead-of-ajp/962928#962928 3 Answer by Robert Munteanu for Apache + Tomcat: Using mod_proxy instead of AJP Robert Munteanu 2009-06-07T22:05:02Z 2009-06-07T22:05:02Z <p>The settings you are looking for are:</p> <pre><code>&lt;VirtualHost *:80&gt; ServerName public.server.name ProxyRequests Off ProxyPreserveHost On &lt;Proxy *&gt; Order deny,allow Allow from all &lt;/Proxy&gt; ProxyPass / http://localhost:8080/ ProxyPassReverse / http://localhost:8080/ &lt;/VirtualHost&gt; </code></pre> <p>Note that we're using localhost as the proxy target. We can do this since we enable <a href="http://httpd.apache.org/docs/2.2/mod/mod%5Fproxy.html#proxypreservehost" rel="nofollow">ProxyPreserveHost</a>. The documentation states that </p> <blockquote> <p>It is mostly useful in special configurations like proxied mass name-based virtual hosting, where the original Host header needs to be evaluated by the backend server.</p> </blockquote> <p>which sounds exactly like what you are doing.</p>