In the spirit of procrastination, which has once again overwhelmed me this weekend, here is a first draft of what I talked about this morning: A document that gives the very basics of how the apache configuration process works. It is meant to be very short and simple without many technical details, but with links to other places in the docs where the details can be obtained.
Comments/suggestions/criticisms strongly encouraged. -- Joshua Slive [EMAIL PROTECTED] http://finance.commerce.ubc.ca/~slive/ Phone: (604) 822-1871Title: Configuring Apache
Configuring ApacheMain Configuration FilesApache 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 TypesConfig directive, and is Syntax of the Configuration FilesDirectives in the configuration files are case-insensitive, but arguments to directives are often case sensitive. Lines which begin with the hash character "#" are considered comments, and are ignored. Comments may not be included on a line after a configuration directive. White space occurring before a directive is ignored, so you may indent directives for clarity. You can check your configuration files for syntax errors without
starting the server by using Scope of DirectivesDirectives 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
.htaccess FilesApache 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 |