Software:Apache HTTP Server

From HandWiki
(Redirected from Software:Stronghold)
Short description: Open-source web server software
Apache HTTP Server
Apache HTTP server logo (2019-present).svg
Original author(s)Robert McCool
Developer(s)Apache Software Foundation
Initial release1995; 29 years ago (1995)[1]
Stable release2.4.52 (December 20, 2021; 2 years ago (2021-12-20)[2]) [±]
Written inC[3]
Operating systemUnix-like, Microsoft Windows,[4] OpenVMS
TypeWeb server
LicenseApache-2.0
Website{{{1}}}

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

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

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,[10] 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.[11]

(As of March 2022), Netcraft estimated that Apache served 23.04% of the million busiest websites, while Nginx served 22.01%; Cloudflare at 19.53% and Microsoft Internet Information Services at 5.78% rounded out the top four. For some of Netcraft's other stats, Nginx is ahead of Apache.[12] According to W3Techs' review of all web sites, in June 2022 Apache was ranked second at 31.4% and Nginx first at 33.6%, with Cloudflare Server third at 21.6%.[13]

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".[14] This was in a context in which it seemed that the open internet -- based on free exchange of open source code -- appeared to be soon subjected to a kind of conquer by proprietary software vendor Microsoft; Apache co-creator Brian Behlendorf -- originator of the name -- saw his effort somewhat parallel that of Geronimo, Chief of the last of the free Apache peoples.[15][16] But it conceded that the name "also makes a cute pun on 'a patchy web server'—a server made from a series of patches".

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."[17][18]

But in an April 2000 interview, Behlendorf asserted that the origins of Apache were not a pun, stating:[19]

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 connoted: "Take no prisoners. Be kind of aggressive and kick some ass."

In January 2023, the US-based non-profit Natives in Tech accused the Apache Software Foundation of cultural appropriation and urged them to change the foundation's name, and consequently also the names of the software projects it hosts.[20][21]

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

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.[23]

A more detailed list of features is provided below:

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.[40] 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.[41][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.[42][43][44] However, some independent but significantly outdated benchmarks show that it is still half as fast as nginx, e.g.[45]

Licensing

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

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.[48][49][50] They initially replaced it with Nginx, and soon after made their own replacement, OpenBSD Httpd, based on the Relayd project.[51][52][53][54]

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
scope="row" 1.3 1998-06-06[55] 2010-02-03 (1.3.42)[56]
scope="row" 2.0 2002-04-06[57] 2013-07-10 (2.0.65)[58]
scope="row" 2.2 2005-12-01[59] 2017-07-11 (2.2.34)[60]
scope="row" 2.4 2012-02-21[61] 2023-10-19 (2.4.58)[62]
{{{2}}}

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.[63][64][65]

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

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.[66] 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.[67][68] Since Apache 2.2.15, Apache ships the module mod_reqtimeout as the official solution supported by the developers.[69]

See also

References

  1. "About the Apache HTTP Server Project". Apache Software Foundation. https://httpd.apache.org/ABOUT_APACHE.html. 
  2. "Tags · apache/httpd · GitHub" (in en). https://github.com/apache/httpd/tags. 
  3. "Apache Software Foundation Index: Projects by Programming Language Index". https://projects-old.apache.org/indexes/language.html. 
  4. "Compiling and Installing". The Apache Software Foundation. https://httpd.apache.org/docs/2.4/install.html. 
  5. "OS/Linux Distributions using Apache". https://secure1.securityspace.com/s_survey/data/man.201808/apacheos.html. 
  6. "Platform Specific Notes - Apache HTTP Server Version 2.4". https://httpd.apache.org/docs/2.4/platform/index.html.en. 
  7. "Secure Web Server". https://vmssoftware.com/products/secure-web-server/. 
  8. 8.0 8.1 "Upgrading to 2.4 from 2.2". https://httpd.apache.org/docs/2.4/upgrading.html. "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." 
  9. "The Apache EBCDIC Port - Apache HTTP Server Version 2.4". https://httpd.apache.org/docs/2.4/platform/ebcdic.html.en. 
  10. Netcraft Market Share for Top Servers Across All Domains August 1995 - today (monthly updated)
  11. "February 2009 Web Server Survey". Netcraft. 18 February 2009. https://news.netcraft.com/archives/2009/02/18/february_2009_web_server_survey.html. 
  12. "March 2022 Web Server Survey" (in en-gb). 29 March 2022. https://news.netcraft.com/archives/2022/03/29/march-2022-web-server-survey.html. 
  13. "Usage Statistics of Web Servers". https://w3techs.com/technologies/overview/web_server. 
  14. "Apache Foundation". https://www.apache.org/foundation/faq.html#name. 
  15. ""Trillions and Trillions Served" documentary feature on The Apache Software Foundation". TheApacheFoundation / Youtube. 2020. https://www.youtube.com/watch?v=JUt2nb0mgwg&t=234. 
  16. "A Foundation of Trust: Building a Blockchain Future : Brian Behlendorf". Long Now Foundation / YouTube. 2020-02-10. https://www.youtube.com/watch?v=u_dhmGNeNEc&t=2700. 
  17. "Information on the Apache HTTP Server Project". 1997-04-15. http://www.apache.org/info.html. 
  18. "Apache Server Frequently Asked Questions". http://www.apache.org/docs/misc/FAQ.html#relate. 
  19. McMillan, Robert (15 April 2000). "Apache Power". Linux Magazine. http://www.linux-mag.com/id/472/. 
  20. Claburn, Thomas (2023-01-11). "Native Americans ask Apache foundation to change name" (in en). https://www.theregister.com/2023/01/11/native_american_apache_software_foundation/. 
  21. Purdy, Kevin (2023-01-12). "Indigenous tech group asks Apache Foundation to change its name" (in en-us). https://arstechnica.com/gadgets/2023/01/indigenous-tech-group-asks-apache-foundation-to-change-its-name/. 
  22. "Apache Docs". https://httpd.apache.org/docs/current/invoking.html. 
  23. "Apache Web Server". webopedia.com. 23 March 1998. https://www.webopedia.com/definitions/apache-web-server/. 
  24. "Apache HTTP Server Tutorial: .htaccess files". Apache.org. https://httpd.apache.org/docs/2.4/howto/htaccess.html. 
  25. "mod_proxy". Apache.org. https://httpd.apache.org/docs/2.4/mod/mod_proxy.html. 
  26. "mod_proxy_balancer". Apache.org. https://httpd.apache.org/docs/2.4/mod/mod_proxy_balancer.html. 
  27. "Balancer Manager". Apache.org. https://httpd.apache.org/docs/trunk/howto/reverse_proxy.html#manager. 
  28. "Authentication and Authorization". Apache.org. https://httpd.apache.org/docs/2.4/howto/auth.html. 
  29. "mod_rewrite". Apache.org. https://httpd.apache.org/docs/2.4/mod/mod_rewrite.html. 
  30. "mod_headers". Apache.org. https://httpd.apache.org/docs/2.4/mod/mod_headers.html. 
  31. "mod_sed". Apache.org. https://httpd.apache.org/docs/2.4/mod/mod_sed.html. 
  32. "mod_substitute". Apache.org. https://httpd.apache.org/docs/2.4/mod/mod_substitute.html. 
  33. "Apache httpd Tutorial: Introduction to Server Side Includes". Apache.org. https://httpd.apache.org/docs/2.4/howto/ssi.html. 
  34. "mod_usertrack". Apache.org. https://httpd.apache.org/docs/2.4/mod/mod_usertrack.html. 
  35. "Apache Tutorial: Dynamic Content with CGI". Apache.org. https://httpd.apache.org/docs/2.4/howto/cgi.html. 
  36. "Per-user web directories". Apache.org. https://httpd.apache.org/docs/2.4/howto/public_html.html. 
  37. "Expressions in Apache HTTP Server". Apache.org. https://httpd.apache.org/docs/2.4/expr.html. 
  38. "mod_status". Apache.org. https://httpd.apache.org/docs/2.4/mod/mod_status.html. 
  39. "Apache Module: mod_ftp". Apache.org. https://httpd.apache.org/mod_ftp/mod/mod_ftp.html. 
  40. "Serving static files: a comparison between Apache, Nginx, Varnish and G-WAN". Spoot!. 14 March 2011. http://nbonvin.wordpress.com/2011/03/14/apache-vs-nginx-vs-varnish-vs-gwan/. 
  41. "worker - Apache HTTP Server Version 2.2". apache.org. https://httpd.apache.org/docs/2.2/mod/worker.html. 
  42. "Apache httpd 2.4". http://people.apache.org/~jim/presos/ACNA11/Apache_httpd_cloud.pdf. 
  43. "Picking a Proxy Server". 14 April 2014. http://www.slideshare.net/bryan_call/choosing-a-proxy-server-apachecon-2014. 
  44. "Throughput evaluation of Apache 2.4.1". 22 February 2012. http://blog.matsumoto-r.jp/?p=1812. 
  45. "Performance of Apache 2.4 with the event MPM compared to Nginx". eschrade.com. 3 January 2014. http://www.eschrade.com/page/performance-of-apache-2-4-with-the-event-mpm-compared-to-nginx/. 
  46. "Apache License, Version 2.0". The Apache Software Foundation. January 2004. https://www.apache.org/licenses/LICENSE-2.0.html. 
  47. Burton, Richard Antony. "FYI: Apache HTTP Server 2.0.49 Released". Newsgroupalt.apache.configuration. Retrieved 2018-02-16.
  48. de Raadt, Theo (18 February 2004). "The new apache license". openbsd-misc (Mailing list). Retrieved 2013-05-21.
  49. "Copyright Policy". OpenBSD. http://www.openbsd.org/policy.html. 
  50. "apache-httpd-openbsd-1.3.20140502p2 – OpenBSD improved and secured version of Apache 1.3". http://ports.su/www/apache-httpd-openbsd. 
  51. Marvin, Rob (25 March 2015). "Inside OpenBSD's new httpd Web server". SD Times. https://sdtimes.com/httpd/inside-openbsds-new-httpd-web-server/. 
  52. "OpenBSD Upgrade Guide: 5.1 to 5.2". openbsd.org. http://www.openbsd.org/faq/upgrade52.html#nginx. 
  53. jj, ed (2014-03-14). "Heads Up: Apache Removed from Base". http://undeadly.org/cgi?action=article&sid=20140314080734. 
  54. "OpenBSD Upgrade Guide: 5.5 to 5.6". openbsd.org. http://www.openbsd.org/faq/upgrade56.html#ToPorts. 
  55. "Announcement: Apache 1.3.0 Released !". 1998-06-06. http://marc.info/?l=apache-httpd-announce&m=90221040625561&w=2. 
  56. "Apache HTTP Server 1.3.42 released (final release of 1.3.x)". apache.org. http://mail-archives.apache.org/mod_mbox/httpd-announce/201002.mbox/%3C20100203000334.GA19021%40infiltrator.stdlib.net%3E. 
  57. "Official Release: Apache 2.0.35 is now GA". 2002-04-06. http://marc.info/?l=apache-httpd-announce&m=101810732100356&w=2. 
  58. "[Announcement Apache HTTP Server 2.0.65 Released"]. apache.org. http://mail-archives.apache.org/mod_mbox/httpd-announce/201307.mbox/%3C20130710124920.2b8793ed.wrowe%40rowe-clan.net%3E. 
  59. "Apache HTTP Server 2.2.0 Released". 2005-12-01. http://marc.info/?l=apache-httpd-announce&m=113347470201565&w=2. 
  60. "[Announce Apache HTTP Server 2.2.34 Released"]. apache.org. https://mail-archives.apache.org/mod_mbox/www-announce/201707.mbox/%3CCACsi2512a0dKZm5SEb9GyNH6nMfs1+swpxyui3c+UZUwvi3vvg@mail.gmail.com%3E. 
  61. "[ANNOUNCEMENT Apache HTTP Server 2.4.1 Released"]. 2012-02-21. http://marc.info/?l=apache-httpd-announce&m=132983471818384&w=2. 
  62. "Apache HTTP Server 2.4.58 Released". apache.org. https://www.apache.org/dist/httpd/Announcement2.4.html. 
  63. Documentation Group. "About the Apache HTTP Server Project - The Apache HTTP Server Project". apache.org. https://httpd.apache.org/ABOUT_APACHE.html. 
  64. "The Apache HTTP Server Open Source Project on Ohloh. (n.d.). Ohloh, the open source network. Retrieved November 12, 2012". http://www.ohloh.net/p/apache. 
  65. "Chapter 4. The Apache HTTP Server". fedoraproject.org. http://docs.fedoraproject.org/en-US/Fedora/13/html/Managing_Confined_Services/chap-Managing_Confined_Services-The_Apache_HTTP_Server.html. 
  66. Zdrnja, Bojan (21 June 2009). "Apache HTTP DoS tool mitigation". SANS Institute. https://isc.sans.edu/diary/Apache+HTTP+DoS+tool+mitigation/6613. 
  67. "Slowloris HTTP DoS". http://ha.ckers.org/slowloris. 
  68. "mod_noloris: defending against DoS". niq's soapbox. July 2009. http://bahumbug.wordpress.com/2009/07/01/mod_noloris-defending-against-dos/. 
  69. "mod_reqtimeout". Apache.org. https://httpd.apache.org/docs/2.4/mod/mod_reqtimeout.html. 

External links