Раздел 2. Using the Apache HTTP Server RU EN Пункт 9. Configuration Files This document describes the files used to configure Apache HTTP Server. Main Configuration Files
Apache HTTP Server is configured by placing directives in plain text
configuration files. The main configuration file is usually called
The server also reads a file containing mime document types;
the filename is set by the Syntax of the Configuration Fileshttpd configuration files contain one directive per line. The backslash "\" 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 backslash and the end of the line. Arguments to directives are separated by whitespace. If an argument contains spaces, you must enclose that argument in quotes. Directives in the configuration files are case-insensitive, but arguments to directives are often case sensitive. Lines that begin with the hash character "#" are considered comments, and are ignored. Comments may not be included on the same line as a configuration directive. White space occurring before a directive is ignored, so you may indent directives for clarity. Blank lines are also ignored. The values of variables defined with the Only shell environment variables defined before the server is started
can be used in expansions. Environment variables defined in the
configuration file itself, for example with The maximum length of a line in normal configuration files, after variable substitution and joining any continued lines, is approximately 16 MiB. In .htaccess files, the maximum length is 8190 characters. You can check your configuration files for syntax errors
without starting the server by using You can use Modules
httpd is a modular server. This implies that only the most
basic functionality is included in the core server. Extended
features are available through modules which can be loaded
into httpd. By default, a base set of modules is
included in the server at compile-time. If the server is
compiled to use dynamically loaded
modules, then modules can be compiled separately and added at
any time using the To see which modules are currently compiled into the server,
you can use the Scope of Directives
Directives placed in the main configuration files apply to
the entire server. If you wish to change the configuration for
only a part of the server, you can scope your directives by
placing them in httpd has the capability to serve many different websites
simultaneously. This is called Virtual
Hosting. Directives can also be scoped by placing them
inside Although most directives can be placed in any of these sections, some directives do not make sense in some contexts. For example, directives controlling process creation can only be placed in the main server context. To find which directives can be placed in which sections, check the Context of the directive. For further information, we provide details on How Directory, Location and Files sections work. .htaccess Files
httpd allows for decentralized management of configuration
via special files placed inside the web tree. The special files
are usually called To find which directives can be placed in
For more information on |
![]() |