This glossary defines some of the common terminology related to Apache in particular, and web serving in general. More information on each concept is provided in the links.
INCLUDES output filter
processes documents for www is a hostname, example.com is a domain name,
and www.example.com is a fully-qualified domain name.
cgi-script handler designates files to be processed as
/usr/local/apache2/conf/httpd.conf, but it may be moved using
run-time or compile-time configuration.GET, POST,
and PUT.
text/html,
image/gif, and application/octet-stream. In
HTTP, the MIME-type is transmitted in the Content-Type
/images/.*(jpg|gif)$". In places where
regular expressions are used to replace strings, the special variables
$1 ... $9 contain backreferences to the grouped parts (in parentheses) of
the matched expression. The special variable $0 contains a backerference
to the whole matched expression. To write a literal dollar sign in a
replacement string, it can be escaped with a backslash. Historically, the
variable & could be used as alias for $0 in some places. This is no
longer possible since version 2.3.6. Apache uses Perl Compatible Regular
Expressions provided by the PCRE
library. You can find more documentation about PCRE's regular expression
syntax at that site, or at
Wikipedia.
tar utility.
Apache distributions are stored in compressed tar archives or using
pkzip.
http or
https, a hostname, and a path. A URL for this page might
be http://httpd.apache.org/docs/&httpd.docs;/glossary.html.