Apache HTTP Server

Print Print
Reading time 13:26

Apache HTTP Server
Apache HTTP server logo (2019-present).svg
Original author(s)Robert McCool
Developer(s)Apache Software Foundation
Initial release1995; 26 years ago (1995)[1]
Stable release2.4.48 (June 1, 2021; 16 days ago (2021-06-01)[2]) [±]
Repository Edit this at Wikidata
Written inC,[3]XML[4]
Operating systemUnix-like, Microsoft Windows,[5]OpenVMS
TypeWeb server
LicenseApache License 2.0
Websitehttpd.apache.org Edit this at Wikidata

The Apache HTTP Server, colloquially called Apache (/əˈpæi/ ə-PATCH-ee), is a free and open-source cross-platform web server software, released under the terms of Apache License 2.0. Apache is developed and maintained by an open community of developers under the auspices of the Apache Software Foundation.

The vast majority of Apache HTTP Server instances run on a Linux distribution,[6] but current versions also run on Microsoft Windows,[7]OpenVMS,[8] and a wide variety of Unix-like systems. Past versions also ran on NetWare, OS/2 and other operating systems,[9] including ports to mainframes.[10]

Originally based on the NCSA HTTPd server, development of Apache began in early 1995 after work on the NCSA code stalled. Apache played a key role in the initial growth of the World Wide Web,[11] quickly overtaking NCSA HTTPd as the dominant HTTP server. In 2009, it became the first web server software to serve more than 100 million websites.[12] As of January 2021, Netcraft estimated that Apache served 24.63% of the million busiest websites, while Nginx served 23.21% and Microsoft is in third place at 6.85% (for some of Netcraft's other stats Nginx is ahead of Apache),[13] while according to W3Techs, Apache is ranked first at 35.0% and Nginx second at 33.0% and Cloudflare Server third at 17.3%.[14]

Name

According to The Apache Software Foundation, its name was "chosen from respect for the various Native American nations collectively referred to as Apache, well-known for their superior skills in warfare strategy and their inexhaustible endurance". But it conceded that the name "also makes a cute pun on 'a patchy web server'—a server made from a series of patches".[15]

There are other sources for the "patchy" software pun theory, including the project's official documentation in 1995, which stated: "Apache is a cute name which stuck. It was based on some existing code and a series of software patches, a pun on 'A PAtCHy' server."[16][17]

But in an April 2000 interview, Brian Behlendorf, one of the Apache's creators, asserted that the origins of Apache were not a pun, stating:[18]

The name literally came out of the blue. I wish I could say that it was something fantastic, but it was out of the blue. I put it on a page and then a few months later when this project started, I pointed people to this page and said: "Hey, what do you think of that idea?" ... Someone said they liked the name and that it was a really good pun. And I was like, "A pun? What do you mean?" He said, "Well, we're building a server out of a bunch of software patches, right? So it's a patchy Web server." I went, "Oh, all right." ... When I thought of the name, no. It just sort of connotated: "Take no prisoners. Be kind of aggressive and kick some ass."

When Apache is running under Unix, its process name is httpd, which is short for "HTTP daemon".[19]

Feature overview

Apache supports a variety of features, many implemented as compiled modules which extend the core functionality. These can range from authentication schemes to supporting server-side programming languages such as Perl, Python, Tcl and PHP. Popular authentication modules include mod_access, mod_auth, mod_digest, and mod_auth_digest, the successor to mod_digest. A sample of other features include Secure Sockets Layer and Transport Layer Security support (mod_ssl), a proxy module (mod_proxy), a URL rewriting module (mod_rewrite), custom log files (mod_log_config), and filtering support (mod_include and mod_ext_filter).

Popular compression methods on Apache include the external extension module, mod_gzip, implemented to help with reduction of the size (weight) of web pages served over HTTP. ModSecurity is an open source intrusion detection and prevention engine for Web applications. Apache logs can be analyzed through a Web browser using free scripts, such as AWStats/W3Perl or Visitors.

Virtual hosting allows one Apache installation to serve many different websites. For example, one computer with one Apache installation could simultaneously serve example.com, example.org, test47.test-server.example.edu, etc.

Apache features configurable error messages, DBMS-based authentication databases, content negotiation and supports several graphical user interfaces (GUIs).

It supports password authentication and digital certificate authentication. Because the source code is freely available, anyone can adapt the server for specific needs, and there is a large public library of Apache add-ons.[20]

A more detailed list of features is provided below:

  • Loadable Dynamic Modules
  • Multiple Request Processing modes (MPMs) including Event-based/Async, Threaded and Prefork.
  • Highly scalable (easily handles more than 10,000 simultaneous connections)
  • Handling of static files, index files, auto-indexing and content negotiation
  • .htaccess per-directory configuration support[21]
  • Reverse proxy with caching[22]
    • Load balancing[23] with in-band health checks
    • Multiple load balancing mechanisms
    • Fault tolerance and Failover with automatic recovery
    • WebSocket, FastCGI, SCGI, AJP and uWSGI support with caching
    • Dynamic configuration[24]
  • TLS/SSL with SNI and OCSP stapling support, via OpenSSL or wolfSSL.
  • Name- and IP address-based virtual servers
  • IPv6-compatible
  • HTTP/2 support
  • Fine-grained authentication and authorization access control[25]
  • gzip compression and decompression
  • URL rewriting[26]
  • Headers[27] and content[28][29] rewriting
  • Custom logging with rotation
  • Concurrent connection limiting
  • Request processing rate limiting
  • Bandwidth throttling
  • Server Side Includes[30]
  • IP address-based geolocation
  • User and Session tracking[31]
  • WebDAV
  • Embedded Perl, PHP and Lua scripting
  • CGI support[32]
  • public_html per-user web-pages[33]
  • Generic expression parser[34]
  • Real-time status views[35]
  • FTP support (by a separate module)[36]

Performance

Instead of implementing a single architecture, Apache provides a variety of MultiProcessing Modules (MPMs), which allow it to run in either a process-based mode, a hybrid (process and thread) mode, or an event-hybrid mode, in order to better match the demands of each particular infrastructure. Choice of MPM and configuration is therefore important. Where compromises in performance must be made, Apache is designed to reduce latency and increase throughput relative to simply handling more requests, thus ensuring consistent and reliable processing of requests within reasonable time-frames.[clarification needed]

For delivering static pages, Apache 2.2 series was considered significantly slower than nginx and varnish.[37] To address this issue, the Apache developers created the Event MPM, which mixes the use of several processes and several threads per process in an asynchronous event-based loop.[38][clarification needed] This architecture as implemented in the Apache 2.4 series performs at least as well as event-based web servers, according to Jim Jagielski and other independent sources.[39][40][41] However, some independent but significantly outdated benchmarks show that it is still half as fast as nginx, e.g.[42]

Licensing

The Apache HTTP Server codebase was relicensed to the Apache 2.0 License (from the previous 1.1 license) in January 2004,[43] and Apache HTTP Server 1.3.31 and 2.0.49 were the first releases using the new license.[44]

The OpenBSD project did not like the change and continued the use of pre-2.0 Apache versions, effectively forking Apache 1.3.x for its purposes.[45][46][47] They initially replaced it with Nginx, and soon after made their own replacement, OpenBSD Httpd, based on the relayd project.[48][49][50][51]

Versions

Version 1.1: The Apache License 1.1 was approved by the ASF in 2000: The primary change from the 1.0 license is in the 'advertising clause' (section 3 of the 1.0 license); derived products are no longer required to include attribution in their advertising materials, only in their documentation.

Version 2.0: The ASF adopted the Apache License 2.0 in January 2004. The stated goals of the license included making the license easier for non-ASF projects to use, improving compatibility with GPL-based software, allowing the license to be included by reference instead of listed in every file, clarifying the license on contributions, and requiring a patent license on contributions that necessarily infringe a contributor's own patents.

Development

Versions of Apache HTTP Server
Version Initial release Latest release
Old version, no longer maintained: 1.3 1998-06-06[52] 2010-02-03 (1.3.42)[53]
Old version, no longer maintained: 2.0 2002-04-06[54] 2013-07-10 (2.0.65)[55]
Old version, no longer maintained: 2.2 2005-12-01[56] 2017-07-11 (2.2.34)[57]
Current stable version: 2.4 2012-02-21[58] 2021-06-01 (2.4.48)[59]
Legend:
Old version
Older version, still maintained
Latest version
Latest preview version
Future release

The Apache HTTP Server Project is a collaborative software development effort aimed at creating a robust, commercial-grade, feature-rich and freely available source code implementation of an HTTP (Web) server. The project is jointly managed by a group of volunteers located around the world, using the Internet and the Web to communicate, plan, and develop the server and its related documentation. This project is part of the Apache Software Foundation. In addition, hundreds of users have contributed ideas, code, and documentation to the project.[60][61][62]

Apache 2.4 dropped support for BeOS, TPF, A/UX, NeXT, and Tandem platforms.[9]

Security

Apache, like other server software, can be hacked and exploited. The main Apache attack tool is Slowloris, which exploits a bug in Apache software.[citation needed] It creates many sockets and keeps each of them alive and busy by sending several bytes (known as "keep-alive headers") to let the server know that the computer is still connected and not experiencing network problems. The Apache developers have addressed Slowloris with several modules to limit the damage caused; the Apache modules mod_limitipconn, mod_qos, mod_evasive, mod security, mod_noloris, and mod_antiloris have all been suggested as means of reducing the likelihood of a successful Slowloris attack.[63][64] Since Apache 2.2.15, Apache ships the module mod_reqtimeout as the official solution supported by the developers.[65]

See also

  • .htaccess
  • .htpasswd
  • ApacheBench
  • Comparison of web server software
  • IBM HTTP Server
  • LAMP (software bundle)
  • List of Apache modules
  • List of free and open-source software packages
  • POSSE project
  • suEXEC
  • Apache Tomcat - another web server developed by the Apache Software Foundation

References

  1. ^ "About the Apache HTTP Server Project". Apache Software Foundation. Archived from the original on 7 June 2008. Retrieved 2008-06-25.
  2. ^ "Releases · apache/httpd · GitHub". GitHub. Retrieved 5 June 2021.
  3. ^ "Archived copy". Archived from the original on 2016-03-02. Retrieved 2016-02-27.CS1 maint: archived copy as title (link)
  4. ^ "Languages". Apache HTTP Server. Black Duck Software. Ohloh. Archived from the original on 7 April 2014. Retrieved 2 April 2014.
  5. ^ "Compiling and Installing". httpd.apache.org. The Apache Software Foundation. Retrieved 9 May 2016.
  6. ^ "OS/Linux Distributions using Apache". secure1.securityspace.com. Retrieved 2018-09-17.
  7. ^ "Platform Specific Notes - Apache HTTP Server Version 2.4". httpd.apache.org. Retrieved 2019-01-21.
  8. ^ "Secure Web Server". vmssoftware.com. Retrieved 2020-10-20.
  9. ^ a b "Upgrading to 2.4 from 2.2". Platform support has been removed for BeOS, TPF, and even older platforms such as A/UX, Next, and Tandem. These were believed to be broken anyway.
  10. ^ "The Apache EBCDIC Port - Apache HTTP Server Version 2.4". httpd.apache.org. Retrieved 2019-08-16.
  11. ^ Netcraft Market Share for Top Servers Across All Domains August 1995 - today (monthly updated)
  12. ^ "February 2009 Web Server Survey". Netcraft. Archived from the original on 26 February 2009. Retrieved 2009-03-29.
  13. ^ "December 2020 Web Server Survey". Netcraft News. Retrieved 2021-01-27.
  14. ^ "Usage Statistics and Market Share of Web Servers, January 2021". w3techs.com. Retrieved 2021-01-27.
  15. ^ "Apache Foundation". www.apache.org. Retrieved 22 August 2018.
  16. ^ "Information on the Apache HTTP Server Project". 1997-04-15. Archived from the original on April 15, 1997.
  17. ^ "Apache Server Frequently Asked Questions". Archived from the original on 1997-01-06. Retrieved 15 January 2017.
  18. ^ McMillan, Robert (15 April 2000). "Apache Power". Linux Magazine. Archived from the original on 28 January 2019.
  19. ^ "Apache Docs". httpd.apache.org. Retrieved 22 August 2018.
  20. ^ "Apache Web Server". webopedia.com.
  21. ^ "Apache HTTP Server Tutorial: .htaccess files". Apache.org.
  22. ^ "mod_proxy". Apache.org.
  23. ^ "mod_proxy_balancer". Apache.org.
  24. ^ "Balancer Manager". Apache.org.
  25. ^ "Authentication and Authorization". Apache.org.
  26. ^ "mod_rewrite". Apache.org.
  27. ^ "mod_headers". Apache.org.
  28. ^ "mod_sed". Apache.org.
  29. ^ "mod_substitute". Apache.org.
  30. ^ "Apache httpd Tutorial: Introduction to Server Side Includes". Apache.org.
  31. ^ "mod_usertrack". Apache.org.
  32. ^ "Apache Tutorial: Dynamic Content with CGI". Apache.org.
  33. ^ "Per-user web directories". Apache.org.
  34. ^ "Expressions in Apache HTTP Server". Apache.org.
  35. ^ "mod_status". Apache.org.
  36. ^ "Apache Module: mod_ftp". Apache.org.
  37. ^ "Serving static files: a comparison between Apache, Nginx, Varnish and G-WAN". Spoot!.
  38. ^ "worker - Apache HTTP Server Version 2.2". apache.org.
  39. ^ Apache httpd 2.4
  40. ^ "Picking a Proxy Server".
  41. ^ "Throughput evaluation of Apache 2.4.1".
  42. ^ "Performance of Apache 2.4 with the event MPM compared to Nginx". eschrade.com.
  43. ^ "Apache License, Version 2.0". The Apache Software Foundation. January 2004. Retrieved 2013-05-21.
  44. ^ Burton, Richard Antony. "FYI: Apache HTTP Server 2.0.49 Released". Newsgroup: alt.apache.configuration. Retrieved 2018-02-16.
  45. ^ de Raadt, Theo (18 February 2004). "The new apache license". openbsd-misc (Mailing list). Retrieved 2013-05-21.
  46. ^ "Copyright Policy". OpenBSD. Retrieved 2013-05-12.
  47. ^ "apache-httpd-openbsd-1.3.20140502p2 – OpenBSD improved and secured version of Apache 1.3". OpenBSD ports. Retrieved 2014-12-28.
  48. ^ Marvin, Rob (25 March 2015). "Inside OpenBSD's new httpd Web server". SD Times. Retrieved 12 October 2019.
  49. ^ "OpenBSD Upgrade Guide: 5.1 to 5.2". openbsd.org.
  50. ^ jj, ed. (2014-03-14). "Heads Up: Apache Removed from Base". OpenBSD Journal.
  51. ^ "OpenBSD Upgrade Guide: 5.5 to 5.6". openbsd.org.
  52. ^ "Announcement: Apache 1.3.0 Released !". 1998-06-06. Retrieved 2015-01-06.
  53. ^ "Apache HTTP Server 1.3.42 released (final release of 1.3.x)". apache.org.
  54. ^ "Official Release: Apache 2.0.35 is now GA". 2002-04-06. Retrieved 2015-01-06.
  55. ^ "[Announcement] Apache HTTP Server 2.0.65 Released". apache.org.
  56. ^ "Apache HTTP Server 2.2.0 Released". 2005-12-01. Retrieved 2015-01-06.
  57. ^ "[Announce] Apache HTTP Server 2.2.34 Released". apache.org.
  58. ^ "[ANNOUNCEMENT] Apache HTTP Server 2.4.1 Released". 2012-02-21. Retrieved 2015-07-17.
  59. ^ "Apache HTTP Server 2.4.48 Released". apache.org.
  60. ^ Documentation Group. "About the Apache HTTP Server Project - The Apache HTTP Server Project". apache.org.
  61. ^ The Apache HTTP Server Open Source Project on Ohloh. (n.d.). Ohloh, the open source network. Retrieved November 12, 2012
  62. ^ "Chapter 4. The Apache HTTP Server". fedoraproject.org.
  63. ^ "Slowloris HTTP DoS". Archived from the original on 26 April 2015. Retrieved 26 June 2009.CS1 maint: bot: original URL status unknown (link)
  64. ^ "mod_noloris: defending against DoS". niq's soapbox. Retrieved 7 January 2012.
  65. ^ "mod_reqtimeout". Apache.org. Retrieved 2013-07-03.

External links

By: Wikipedia.org
Edited: 2021-06-18 14:10:38
Source: Wikipedia.org