Is it good idea to use Apache Webserver in front of GF or Tomcat? Does it improve the performance/security?

Or there is not any reason to use Apache Web Server with GF?

link|improve this question

52% accept rate
Don't put Apache in front if you doing Comet/Websockets. See my answer. – Adam Gent Sep 11 '11 at 12:25
feedback

5 Answers

up vote 7 down vote accepted

Taken from http://wiki.apache.org/tomcat/FAQ/Connectors#Q3

  • Clustering. By using Apache as a front end you can let Apache act as a front door to your content to multiple Tomcat instances. If one of your Tomcats fails, Apache ignores it and your Sysadmin can sleep through the night. This point could be ignored if you use a hardware loadbalancer and Tomcat's clustering capabilities.
  • Clustering/Security. You can also use Apache as a front door to different Tomcats for different URL namespaces (/app1/, /app2/, /app3/, or virtual hosts). The Tomcats can then be each in a protected area and from a security point of view, you only need to worry about the Apache server. Essentially, Apache becomes a smart proxy server.
  • Security. This topic can sway one either way. Java has the security manager while Apache has a larger mindshare and more tricks with respect to security. I won't go into this in more detail, but let Google be your friend. Depending on your scenario, one might be better than the other. But also keep in mind, if you run Apache with Tomcat - you have two systems to defend, not one.
  • Add-ons. Adding on CGI, perl, PHP is very natural to Apache. Its slower and more of a kludge for Tomcat. Apache also has hundreds of modules that can be plugged in at will. Tomcat can have this ability, but the code hasn't been written yet.
  • Decorators! With Apache in front of Tomcat, you can perform any number of decorators that Tomcat doesn't support or doesn't have the immediate code support. For example, mod_headers, mod_rewrite, and mod_alias could be written for Tomcat, but why reinvent the wheel when Apache has done it so well?
  • Speed. Apache is faster at serving static content than Tomcat. But unless you have a high traffic site, this point is useless. But in some scenarios, tomcat can be faster than Apache httpd. So benchmark YOUR site. Tomcat can perform at httpd speeds when using the proper connector (APR with sendFile enabled). Speed should not be considered a factor when choosing between Apache httpd and Tomcat
  • Socket handling/system stability. Apache has better socket handling with respect to error conditions than Tomcat. The main reason is Tomcat must perform all its socket handling via the JVM which needs to be cross platform. The problem is socket optimization is a platform specific ordeal. Most of the time the java code is fine, but when you are also bombarded with dropped connections, invalid packets, invalid requests from invalid IP's, Apache does a better job at dropping these error conditions than JVM based program. (YMMV)
link|improve this answer
@vkraemer - Thanks for the edit. @Navid, please give back to the community and accept an answer. :) – Amir Raminfar Mar 1 '11 at 16:05
sorry guys, unfortunately i couldn't login for long time – Navid Apr 17 '11 at 13:55
Nothing about GlassFish or are we assumming the same answers? – blo0p3r Apr 12 at 17:28
feedback

Since everybody gave you reasons why to put Apache in front of Tomcat let me give you some reasons why not to:

  • The AJP connector does not and will not support advanced IO meaning no Comet, Websockets, etc.
  • If your not using AJP I have noticed there is a pretty big proxy overhead when using mod_proxy for Apache. So if your looking for low latency Apache infront would not be good.
  • Apache has a rather big foot print compared to Nginx or Lighttpd etc.

Putting Apache infront does NOT:

What Apache does give you is more plugins and allows you to run different web technologies.

If you only need Tomcat you would be better suited to use a HAProxy or Nginx as load balancer.

link|improve this answer
1  
Tomcat 7 supports NIO for the AJP connector (see tomcat.apache.org/tomcat-7.0-doc/config/ajp.html), although still marked as experimental. – Bob Feb 24 at 18:37
feedback
  • Performance - If you have a lot of static content, serving it with Apache will improve your performance. If most of your content is dynamic, using Tomcat or Glassfish alone will be just as fast (probably faster).

  • Scalability - As Amir and user384706 pointed out, you can load balance multiple instances of your application behind Apache. This will allow you to handle more volume, and increase stability in the event one of your instances goes down.

  • Security - Apache, Tomcat, and Glassfish all support SSL, but if you decide to use Apache, most likely thats where you should configure it. If you want additional protection against attacks (DoS, XSS, SQL injection, etc.) you can install the mod_security web application firewall.

  • Additional Features - Apache has a bunch of nice modules available for URL rewriting, interfacing with other programming languages, authentication, and a ton of other stuff.

link|improve this answer
2  
Actually the performance difference for static content is negligible, see stackoverflow.com/questions/654701/… – mindas Feb 25 '11 at 23:12
Interesting...good to know! – dbyrne Feb 26 '11 at 5:35
feedback

One reason to place Apache in front of Tomcat would be for load balancing.
Requests hit the Apache server in front and are distributed to backend Tomcat containers depending on load and availability.
The clients know of only one IP (Apache) but the requests are distributed over multiple containers.
So this is in the case you deploy a kind of distributed web application and you need it robust.
If your question is about a simple web application then see dbyrne answer

link|improve this answer
feedback

If you're running a LAMP stack, you can run PHP/Ruby stuff off apache and forward java stuff to tomcat with mod_jk.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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