René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

httpd.conf

Arguably, the most important directives in the httpd.conf file are:

Port

Alias

User

Apache runs under an account specified by the User directive, typically nobody.

Group

ErrorLog

ErrorLog /var/log/apache/error.log

ServerName

ServerAdmin

DocumentRoot

PerlModule

Location

The location does not have to exist in the file system.
<Location /foo/bar>
  directive_one
  directive_two
</Location>

Include

Include /etc/apache/modules.conf

Files

For all files matching a regular expression.
<Files - "\.graph$"> 	  
  directive_one
  directive_two
</Files>