diff options
author | Rich Bowen <rbowen@apache.org> | 2010-03-12 13:36:19 +0100 |
---|---|---|
committer | Rich Bowen <rbowen@apache.org> | 2010-03-12 13:36:19 +0100 |
commit | e4a73b5c27d48ad37b3f59fd1c6db5b89d234d63 (patch) | |
tree | 6601cfb73ada41ad34afbf3599a74cdf17e9566b /docs/manual/configuring.html.en | |
parent | Apache -> httpd (diff) | |
download | apache2-e4a73b5c27d48ad37b3f59fd1c6db5b89d234d63.tar.xz apache2-e4a73b5c27d48ad37b3f59fd1c6db5b89d234d63.zip |
Apache -> httpd
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@922238 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/configuring.html.en')
-rw-r--r-- | docs/manual/configuring.html.en | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/docs/manual/configuring.html.en b/docs/manual/configuring.html.en index 7e9ebbc9d4..85456c94ad 100644 --- a/docs/manual/configuring.html.en +++ b/docs/manual/configuring.html.en @@ -26,8 +26,7 @@ <a href="./tr/configuring.html" hreflang="tr" rel="alternate" title="Türkçe"> tr </a></p> </div> -<p>This document describes the files used to configure the Apache -HTTP server.</p> +<p>This document describes the files used to configure the Apache HTTP server (httpd).</p> </div> <div id="quickview"><ul id="toc"><li><img alt="" src="./images/down.gif" /> <a href="#main">Main Configuration Files</a></li> <li><img alt="" src="./images/down.gif" /> <a href="#syntax">Syntax of the Configuration Files</a></li> @@ -41,7 +40,7 @@ HTTP server.</p> <table class="related"><tr><th>Related Modules</th><th>Related Directives</th></tr><tr><td><ul><li><code class="module"><a href="./mod/mod_mime.html">mod_mime</a></code></li></ul></td><td><ul><li><code class="directive"><a href="./mod/core.html#ifdefine"><IfDefine></a></code></li><li><code class="directive"><a href="./mod/core.html#include">Include</a></code></li><li><code class="directive"><a href="./mod/mod_mime.html#typesconfig">TypesConfig</a></code></li></ul></td></tr></table> - <p>Apache is configured by placing <a href="mod/directives.html">directives</a> in plain text + <p>The Apache HTTP Server is configured by placing <a href="mod/directives.html">directives</a> in plain text configuration files. The main configuration file is usually called <code>httpd.conf</code>. The location of this file is set at compile-time, but may be overridden with the <code>-f</code> @@ -50,7 +49,7 @@ HTTP server.</p> directive, and wildcards can be used to include many configuration files. Any directive may be placed in any of these configuration files. Changes to the main configuration files are only - recognized by Apache when it is started or restarted.</p> + recognized by httpd when it is started or restarted.</p> <p>The server also reads a file containing mime document types; the filename is set by the <code class="directive"><a href="./mod/mod_mime.html#typesconfig">TypesConfig</a></code> directive, @@ -60,7 +59,7 @@ HTTP server.</p> <h2><a name="syntax" id="syntax">Syntax of the Configuration Files</a></h2> - <p>Apache configuration files contain one directive per line. + <p>httpd configuration files contain one directive per line. The back-slash "\" may be used as the last character on a line to indicate that the directive continues onto the next line. There must be no other characters or white space between the @@ -104,16 +103,16 @@ HTTP server.</p> <table class="related"><tr><th>Related Modules</th><th>Related Directives</th></tr><tr><td><ul><li><code class="module"><a href="./mod/mod_so.html">mod_so</a></code></li></ul></td><td><ul><li><code class="directive"><a href="./mod/core.html#ifmodule"><IfModule></a></code></li><li><code class="directive"><a href="./mod/mod_so.html#loadmodule">LoadModule</a></code></li></ul></td></tr></table> - <p>Apache is a modular server. This implies that only the most + <p>httpd is a modular server. This implies that only the most basic functionality is included in the core server. Extended features are available through <a href="mod/">modules</a> which can be loaded - into Apache. By default, a <a href="mod/module-dict.html#Status">base</a> set of modules is + into httpd. By default, a <a href="mod/module-dict.html#Status">base</a> set of modules is included in the server at compile-time. If the server is compiled to use <a href="dso.html">dynamically loaded</a> modules, then modules can be compiled separately and added at any time using the <code class="directive"><a href="./mod/mod_so.html#loadmodule">LoadModule</a></code> directive. - Otherwise, Apache must be recompiled to add or remove modules. + Otherwise, httpd must be recompiled to add or remove modules. Configuration directives may be included conditional on a presence of a particular module by enclosing them in an <code class="directive"><a href="./mod/core.html#ifmodule"><IfModule></a></code> block.</p> @@ -135,7 +134,7 @@ HTTP server.</p> locations or URLs. They can also be nested, allowing for very fine grained configuration.</p> - <p>Apache has the capability to serve many different websites + <p>httpd has the capability to serve many different websites simultaneously. This is called <a href="vhosts/">Virtual Hosting</a>. Directives can also be scoped by placing them inside <code class="directive"><a href="./mod/core.html#virtualhost"><VirtualHost></a></code> @@ -156,7 +155,7 @@ HTTP server.</p> <table class="related"><tr><th>Related Modules</th><th>Related Directives</th></tr><tr><td /><td><ul><li><code class="directive"><a href="./mod/core.html#accessfilename">AccessFileName</a></code></li><li><code class="directive"><a href="./mod/core.html#allowoverride">AllowOverride</a></code></li></ul></td></tr></table> - <p>Apache allows for decentralized management of configuration + <p>httpd allows for decentralized management of configuration via special files placed inside the web tree. The special files are usually called <code>.htaccess</code>, but any name can be specified in the <code class="directive"><a href="./mod/core.html#accessfilename">AccessFileName</a></code> |