Difference between revisions of "Apache Server"

From Organic Design wiki
m (removed comment at top since its really a shell command)
 
 
(16 intermediate revisions by 4 users not shown)
Line 1: Line 1:
terminal:~ user$ httpd -V
+
The '''Apache HTTP Server''', commonly referred to simply as '''Apache''', is a [[W:web server|web server]] notable for playing a key role in the initial growth of the [[W:World Wide Web|World Wide Web]]. Apache was the first viable alternative to the [[W:Netscape Communications Corporation|Netscape Communications Corporation]] web server (currently known as [[W:Sun Java System Web Server|Sun Java System Web Server]]), and has since evolved to rival other Unix-based web servers in terms of functionality and performance.
:Server version: Apache/1.3.33 (Darwin)
+
 
:Server built:   Mar 20 2005 15:08:27
+
== Apache versions ==
:Server's Module Magic Number: 19990320:16
+
Version 2 of the Apache server was a substantial re-write of much of the Apache 1.x code, with a strong focus on further modularization and the development of a portability layer, the [[W:Apache Portable Runtime|Apache Portable Runtime]]. The Apache 2.x core has several major enhancements over Apache 1.x. These include [[W:Thread (computer science)|UNIX threading]], better support for non-Unix platforms (such as Microsoft Windows), a new Apache [[W:application programming interface|API]], and [[W:IPv6|IPv6]] support.
:Server compiled with....
+
 
-D EAPI
+
Version 2.2 introduced a new authorization API that allows for more flexibility, with a resulting increase in complexity of configuration. It also features improved cache modules and proxy modules.
-D HAVE_MMAP
+
 
-D USE_MMAP_SCOREBOARD
+
== See also ==
-D USE_MMAP_FILES
+
*[[NGiNX]]
-D HAVE_FCNTL_SERIALIZED_ACCEPT
+
*[[1 July 2013|OD Move from Apache to NGiNX]]
-D HAVE_FLOCK_SERIALIZED_ACCEPT
+
[[Category:Libre software]]
-D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
 
-D DYNAMIC_MODULE_LIMIT=64
 
-D HARD_SERVER_LIMIT=2048
 
-D HTTPD_ROOT="/usr"
 
-D SUEXEC_BIN="/usr/sbin/suexec"
 
-D DEFAULT_PIDLOG="/var/run/httpd.pid"
 
-D DEFAULT_SCOREBOARD="/var/run/httpd.scoreboard"
 
-D DEFAULT_LOCKFILE="/var/run/httpd.lock"
 
-D DEFAULT_ERRORLOG="/var/log/httpd/error_log"
 
-D TYPES_CONFIG_FILE="/etc/httpd/mime.types"
 
-D SERVER_CONFIG_FILE="/etc/httpd/httpd.conf"
 
-D ACCESS_CONFIG_FILE="/etc/httpd/access.conf"
 
-D RESOURCE_CONFIG_FILE="/etc/httpd/srm.conf"
 

Latest revision as of 21:48, 1 July 2013

The Apache HTTP Server, commonly referred to simply as Apache, is a web server notable for playing a key role in the initial growth of the World Wide Web. Apache was the first viable alternative to the Netscape Communications Corporation web server (currently known as Sun Java System Web Server), and has since evolved to rival other Unix-based web servers in terms of functionality and performance.

Apache versions

Version 2 of the Apache server was a substantial re-write of much of the Apache 1.x code, with a strong focus on further modularization and the development of a portability layer, the Apache Portable Runtime. The Apache 2.x core has several major enhancements over Apache 1.x. These include UNIX threading, better support for non-Unix platforms (such as Microsoft Windows), a new Apache API, and IPv6 support.

Version 2.2 introduced a new authorization API that allows for more flexibility, with a resulting increase in complexity of configuration. It also features improved cache modules and proxy modules.

See also