StackShareStackShare
Follow on
StackShare

Discover and share technology stacks from companies around the world.

Follow on

© 2025 StackShare. All rights reserved.

Product

  • Stacks
  • Tools
  • Feed

Company

  • About
  • Contact

Legal

  • Privacy Policy
  • Terms of Service
  1. Stackups
  2. Application & Data
  3. Platform as a Service
  4. Web Servers
  5. Apache HTTP Server vs nginx

Apache HTTP Server vs nginx

OverviewDecisionsComparisonAlternatives

Overview

Apache HTTP Server
Apache HTTP Server
Stacks64.5K
Followers22.8K
Votes1.4K
GitHub Stars3.8K
Forks1.2K
NGINX
NGINX
Stacks115.0K
Followers61.9K
Votes5.5K
GitHub Stars28.4K
Forks7.6K

Nginx or Apache - Help me decide

By Jesus Castello

Nginx & Apache are the two most used web servers on the internet. Together, they own over 60% of the total market share.

But which one should you use? That's exactly the purpose of this article.

Performance

The first thing you should think about when choosing a critical piece of software like a web server is its performance characteristics.

Not only how many requests they can serve per second, but also how they behave under heavy load & what does the resource usage (RAM, CPU) look like.

This our testing setup:

  • Ubuntu 18.04
  • Apache 2.4.29 (mpm_event)
  • Nginx 1.14.0
  • Default settings
  • 1GB ram
  • 1 CPU

As a benchmarking tool we're going to use wrk with the following settings:

  • -d 60 (duration of the test)
  • -c 40 (concurrency)
  • --latency (latency distribution)

Our target URL returns a small HTML file with no server language involved.

Running this test we get the following results (requests/second):

ApacheNginx
670.53660.15

It seems like Nginx & Apache are about the same speed!

But what about resource usage?

While running this test, Apache averaged a CPU usage of 20% & 18MB RAM:

Nginx CPU usage averaged 12% & only 8MB RAM:

While this benchmark might not be representative of all real-world use cases & you should consider running your own benchmarks for your particular setup, it can give you a general idea of how these servers perform.

In conclusion, if your biggest concern is performance & efficient use of your resources you should consider using Nginx.

Extensibility

Both servers come with a good set of core features which should be enough for most people...

...but sometimes you need that little extra.

That's why you can extend both servers using modules.

Modules can be compiled into the main server binary, or they can be added as dynamic modules that can be installed separately from the binary.

Dynamic modules are more flexible because they can be updated on their own, and you can add new modules without having to recompile your server.

Most Apache modules are dynamic, but Nginx recently (version 1.9.11, released in 2016) started supporting this feature.

Now:

Let's take a look at some useful modules for both servers.

  • modsecurity: Available for Apache. This module adds a Web Application Firewall (WAF) in front of your application. There is a Nginx version, but it seems not maintained, you can use Naxsi instead.
  • page_speed: Available for Apache & Nginx. This module can optimize images on the fly & add other optimizations to improve page loading times.
  • ngx_mruby / mod_ruby: Available for Apache & Nginx. This module allows you to use the Ruby programming language to process requests & make decisions to redirect to another page, return some file contents, etc. The nginx version is well-maintained & faster.

Many popular modules are available for both servers, so module availability may not be a factor when deciding what server to use.

For a complete list of available modules you can go here:

  • Apache module list
  • Nginx module list

Installing a new module:

Adding a new module to Apache is easier than adding new modules to Nginx.

You can install Apache modules from your package repository, then use the a2enmod command to enable it & restart your server.

That's it.

Nginx may require you to compile from source to install some modules, since dynamic modules must be built against the same version of Nginx that you're running.

However, you can do this on a non-production server, then copy the dynamic module (.so file) into production.

If you think you'll need to be changing modules frequently this is something to consider, but that's not often the case.

Popularity

The popularity of a piece of open-source software matters because the most popular usually get the most attention. This can translate into better documentation, the ability to find solutions to specific problems & how well maintained is the software itself.

So exactly how popular are Apache & Nginx?

According to the 2018 August Web Server Survey conducted by netcraft.com, these are the stats for active sites:

  • Apache 38.68% (-0.62 from previous month)
  • nginx 22.67% (+0.11 from previous month)

The rate of change is pretty small, but that's to be expected from an established technology.

Looking at the big picture it looks like Apache has been losing a lot of ground over the last 7 years. In 2011, Apache owned 60% of the active sites market share, while Nginx (released in October 2004) only had 10% by that same year.

If the trend continues, Nginx is going to overtake Apache as the "king of web servers" in a few years.

Maybe earlier than we expect.

Something to keep in mind when making your decision.

Most Common Uses

Let's have a look at the most common uses for Apache & Nginx, this will help you decide if your use case matches with what the server does best naturally.

Apache strengths:

  • Runs PHP applications (like Wordpress) without external software, just install mod_php if it isn't already part of the default install for your distribution.
  • Works great in a shared environment (like a hosting provider) because it supports directory-based configuration with .htaccess files.

Nginx strengths:

  • Serves static assets very efficiently thanks to its event-driven approach to handling requests.
  • Is a great proxy & cache layer for the same reason.
  • You can easily implement custom logic with modules like ngx_lua & ngx_mruby. Cloudflare makes great use of this for their custom WAF (Web Application Firewall).

Final Considerations

A few more things to consider before making your final decision:

  • Nginx offers an enterprise-grade solution in the form of Nginx PLUS. This adds professional support & a few extra capabilities (like monitoring) which may be important to you if you are running a big operation.
  • Apache & Nginx can be used together, with Nginx proxying non-static asset request to Apache. This can add significant complexity to your setup, but it's something to consider if you want to use features from both.

We hope you found this comparison useful!

Apache HTTP Server vs nginx: What are the differences?

What is Apache HTTP Server? The most popular web server on the Internet since April 1996. The Apache HTTP Server is a powerful and flexible HTTP/1.1 compliant web server. Originally designed as a replacement for the NCSA HTTP Server, it has grown to be the most popular web server on the Internet.

What is nginx? A high performance free open source web server powering busiest sites on the Internet. nginx [engine x] is an HTTP and reverse proxy server, as well as a mail proxy server, written by Igor Sysoev. According to Netcraft nginx served or proxied 30.46% of the top million busiest sites in Jan 2018.

Apache HTTP Server and nginx belong to "Web Servers" category of the tech stack.

"Web server", "Most widely-used web server" and "Virtual hosting" are the key factors why developers consider Apache HTTP Server; whereas "High-performance http server", "Performance" and "Easy to configure" are the primary reasons why nginx is favored.

Apache HTTP Server and nginx are both open source tools. It seems that nginx with 9.1K GitHub stars and 3.43K forks on GitHub has more adoption than Apache HTTP Server with 2.21K GitHub stars and 657 GitHub forks.

According to the StackShare community, nginx has a broader approval, being mentioned in 8669 company stacks & 2556 developers stacks; compared to Apache HTTP Server, which is listed in 6194 company stacks and 1067 developer stacks.

Share your Stack

Help developers discover the tools you use. Get visibility for your team's tech choices and contribute to the community's knowledge.

View Docs
CLI (Node.js)
or
Manual

Advice on Apache HTTP Server, NGINX

Daniel
Daniel

Co-Founder at Polpo Data Analytics & Software Development

May 25, 2021

Decided

For us, NGINX is a lite HTTP server easy to configure. On our research, we found a well-documented software we a lot of support from the community.

We have been using it alongside tools like certbot and it has been a total success.

We can easily configure our sites and have a folder for available vs enabled sites, and with the nginx -t command we can easily check everything is running fine.

289k views289k
Comments
Hari
Hari

Mar 3, 2020

Needs advice

I was in a situation where I have to configure 40 RHEL servers 20 each for Apache HTTP Server and Tomcat server. My task was to

  1. configure LVM with required logical volumes, format and mount for HTTP and Tomcat servers accordingly.
  2. Install apache and tomcat.
  3. Generate and apply selfsigned certs to http server.
  4. Modify default ports on Tomcat to different ports.
  5. Create users on RHEL for application support team.
  6. other administrative tasks like, start, stop and restart HTTP and Tomcat services.

I have utilized the power of ansible for all these tasks, which made it easy and manageable.

419k views419k
Comments
greg00m
greg00m

Mar 9, 2020

Needs advice

I am diving into web development, both front and back end. I feel comfortable with administration, scripting and moderate coding in bash, Python and C++, but I am also a Windows fan (i love inner conflict). What are the votes on web servers? IIS is expensive and restrictive (has Windows adoption of open source changed this?) Apache has the history but seems to be at the root of most of my Infosec issues, and I know nothing about nginx (is it too new to rely on?). And no, I don't know what I want to do on the web explicitly, but hosting and data storage (both cloud and tape) are possibilities.
Ready, aim fire!

766k views766k
Comments

Detailed Comparison

Apache HTTP Server
Apache HTTP Server
NGINX
NGINX

The Apache HTTP Server is a powerful and flexible HTTP/1.1 compliant web server. Originally designed as a replacement for the NCSA HTTP Server, it has grown to be the most popular web server on the Internet.

nginx [engine x] is an HTTP and reverse proxy server, as well as a mail proxy server, written by Igor Sysoev. According to Netcraft nginx served or proxied 30.46% of the top million busiest sites in Jan 2018.

Statistics
GitHub Stars
3.8K
GitHub Stars
28.4K
GitHub Forks
1.2K
GitHub Forks
7.6K
Stacks
64.5K
Stacks
115.0K
Followers
22.8K
Followers
61.9K
Votes
1.4K
Votes
5.5K
Pros & Cons
Pros
  • 479
    Web server
  • 305
    Most widely-used web server
  • 217
    Virtual hosting
  • 148
    Fast
  • 138
    Ssl support
Cons
  • 4
    Hard to set up
Pros
  • 1453
    High-performance http server
  • 895
    Performance
  • 730
    Easy to configure
  • 607
    Open source
  • 530
    Load balancer
Cons
  • 10
    Advanced features require subscription

What are some alternatives to Apache HTTP Server, NGINX?

Unicorn

Unicorn

Unicorn is an HTTP server for Rack applications designed to only serve fast clients on low-latency, high-bandwidth connections and take advantage of features in Unix/Unix-like kernels. Slow clients should only be served by placing a reverse proxy capable of fully buffering both the the request and response in between Unicorn and slow clients.

Microsoft IIS

Microsoft IIS

Internet Information Services (IIS) for Windows Server is a flexible, secure and manageable Web server for hosting anything on the Web. From media streaming to web applications, IIS's scalable and open architecture is ready to handle the most demanding tasks.

Apache Tomcat

Apache Tomcat

Apache Tomcat powers numerous large-scale, mission-critical web applications across a diverse range of industries and organizations.

Passenger

Passenger

Phusion Passenger is a web server and application server, designed to be fast, robust and lightweight. It takes a lot of complexity out of deploying web apps, adds powerful enterprise-grade features that are useful in production, and makes administration much easier and less complex.

Gunicorn

Gunicorn

Gunicorn is a pre-fork worker model ported from Ruby's Unicorn project. The Gunicorn server is broadly compatible with various web frameworks, simply implemented, light on server resources, and fairly speedy.

Jetty

Jetty

Jetty is used in a wide variety of projects and products, both in development and production. Jetty can be easily embedded in devices, tools, frameworks, application servers, and clusters. See the Jetty Powered page for more uses of Jetty.

lighttpd

lighttpd

lighttpd has a very low memory footprint compared to other webservers and takes care of cpu-load. Its advanced feature-set (FastCGI, CGI, Auth, Output-Compression, URL-Rewriting and many more) make lighttpd the perfect webserver-software for every server that suffers load problems.

Swoole

Swoole

It is an open source high-performance network framework using an event-driven, asynchronous, non-blocking I/O model which makes it scalable and efficient.

Puma

Puma

Unlike other Ruby Webservers, Puma was built for speed and parallelism. Puma is a small library that provides a very fast and concurrent HTTP 1.1 server for Ruby web applications.

Caddy

Caddy

Caddy 2 is a powerful, enterprise-ready, open source web server with automatic HTTPS written in Go.

Related Comparisons

Bootstrap
Materialize

Bootstrap vs Materialize

Laravel
Django

Django vs Laravel vs Node.js

Bootstrap
Foundation

Bootstrap vs Foundation vs Material UI

Node.js
Spring Boot

Node.js vs Spring-Boot

Liquibase
Flyway

Flyway vs Liquibase