Archives for category: Uncategorized

Poem at various stages

Short poem at various stages, ending in 11 syllables on each stanza

Thank you, lord, through the mystery of your infinite love
for giving me the wisdom to solve each problem,
the grace to resolve every difficulty,
the faith to absolve myself from sin and be solemn,
and your guidance to dissolve obstacles & iniquity.
AMEN.

Following version:  

May God give you the wisdom to solve each problem,
the grace to resolve every mystery & difficulty,
the faith to absolve yourself from sin & be solemn
& your guidance to dissolve obstacles, strife & iniquity.

May God give you the wisdom to solve each problem;
the grace to resolve every difficulty;
faith to absolve yourself from sin & to be solemn,
& guidance to dissolve strife & all iniquity.

Final version:

May God give you wisdom to solve each problem;
the grace to resolve every difficulty;
faith to absolve yourself & to be solemn,
& guidance to dissolve all iniquity.

Look out for these interesting e-mail addresses

Mystery Bonus Package if you claim your free e-mail address below:

These e-mail addresses contain unclaimed promotions at a guaranteed retail value of zero divided by zero, which should give you an infinite number. Incredible, isn’t it?? Save over R0!I can confirm that you’ve been preselected to view there personal e-mail addresses that could be yours absolutely FREE if you respond to this blog as instructed. This is an offer you simply should NOT refuse.

Plus! Don’t miss out on the new mystery e-mail package that’s on it’s way to any of these e-mail address you choose above, non obove? ok, then as for the ones below, please remember to register these e-mail addresses within the next second or this offer will expire, so keep a close eye out for it. We would not like to discard your e-mail address or for you to miss the opportunity of receiving the mystery e-mail package or the opportunity to win instant e-mail attachments and read all you can bulk mail.

2Doz.strawhats@R12.00
3Doz.pairsofsocks@R15.00
4Smalltowels@R2.45
1Bunchimitationflowers@R4.50
6Felthats@R4.00
6Vests@R1.25each
6Pairsofshoes@R1.30perpair
1Pulloverpurewool@R6
10Metresserviettes@10cmpereater

Remember, only a select number of people, so if you’re a computer, please ignore this, have been chosen to receive these e-mail addresses and you are one of them.

Urgent Notification:Please quote who8hoo in all communications.

 

P.S. Thanks for pawsing to read my blog.
o,-.___,-.
0\./).”.(\./
ooo(_0_)
oOo/ \/))
00,,(II.II)
oo00.00
Please..\~~~~~~
odrop…..\~~~~~
oOme……\~~~
ooOa……….\`~
oOOoline.O…\~
ooOOosome.o..\
OOooOOtime.o./
ooooOOO0o~~\.o./
oOoOoO~~.~–~/
OOoo~~~\\/”\
OOO~~.o//\__-==
~~~~ooo..//


Need a vacation? You will feel like you’ve had one after reading my blog..

 

Setting up server

 

<VirtualHost> directive

Syntax: <VirtualHost addr[:port] [addr[:port]] …> … </VirtualHost> 
Context: server config
Status: Core.
Compatibility: Non-IP address-based Virtual Hosting only available in Apache 1.1 and later.
Compatibility: Multiple address support only available in Apache 1.2 and later.

<VirtualHost> and </VirtualHost> are used to enclose a group of directives which will apply only to a particular virtual host. Any directive which is allowed in a virtual host context may be used. When the server receives a request for a document on a particular virtual host, it uses the configuration directives enclosed in the <VirtualHost> section. Addr can be

  • The IP address of the virtual host
  • A fully qualified domain name for the IP address of the virtual host.

Example:

<VirtualHost 10.1.2.3>
ServerAdmin webmaster@host.foo.com
DocumentRoot /www/docs/host.foo.com
ServerName host.foo.com
ErrorLog logs/host.foo.com-error_log
TransferLog logs/host.foo.com-access_log
</VirtualHost>

Each VirtualHost must correspond to a different IP address, different port number or a different host name for the server, in the former case the server machine must be configured to accept IP packets for multiple addresses. (If the machine does not have multiple network interfaces, then this can be accomplished with theifconfig aliascommand (if your OS supports it), or with kernel patches like VIF (for SunOS(TM) 4.1.x)).

You can specify more than one IP address. This is useful if a machine responds to the same name on two different interfaces. For example, if you have a VirtualHost that is available to hosts on an internal (intranet) as well as external (internet) network. Example:

<VirtualHost 192.168.1.2 204.255.176.199>
DocumentRoot /www/docs/host.foo.com
ServerName host.foo.com

Apache HTTP Server Version 1.3

Is this the version you want? For more recent versions, check our documentation index.

Apache Core Features

These configuration parameters control the core Apache features, and are always available.

Directives


AcceptFilter directive

Syntax: AcceptFilter on|off
Default:AcceptFilter on
Context: server config
Status: core
Compatibility: AcceptFilter is available in Apache 1.3.22 and later

AcceptFiltercontrols a BSD specific filter optimization. It is compiled in by default – and switched on by default if your system supports it (setsocketopt() option SO_ACCEPTFILTER). Currently only FreeBSD supports this.

See the filter section on performance hints for more information.

The compile time flagAP_ACCEPTFILTER_OFFcan be used to change the default to ‘off’.httpd -Vandhttpd -Lwill show compile time defaults and whether or not SO_ACCEPTFILTER was defined during the compile.


AcceptMutex directive

Syntax: AcceptMutex uslock|pthread|sysvsem|fcntl|flock|os2sem|tpfcore|none|default
Default:AcceptMutex default
Context: server config
Status: core 
Compatibility: AcceptMutex is available in Apache 1.3.21 and later.

AcceptMutexcontrols which accept() mutex method Apache will use. Not all methods are available on all platforms, since the suite of methods is determined at compile-time. For a list of which methods are available for your particular build, thehttpd -Vcommand line option will list them out.

The compile time flags-D HAVE_METHOD_SERIALIZED_ACCEPTcan be used to add different methods to your build, or one can edit theinclude/ap_config.hfile for your particular platform.

This directive has no effect on Microsoft Windows.

See the performance tuning guide for more information.


AccessConfig directive

Syntax: AccessConfig file-path|directory-path|wildcard-path
Default:AccessConfig conf/access.conf
Context: server config, virtual host
Status: core 
Compatibility: The ability to specify a directory, rather than a file name, is only available in Apache 1.3.13 and later. This directive will be eliminated in version 2.0.

The server will read this file for more directives after reading the ResourceConfig file. File-path is relative to theServerRoot. This feature can be disabled using:

AccessConfig /dev/null

Or, on Win32 servers,

AccessConfig nul

Historically, this file only contained <Directory> sections; in fact it can now contain any server directive allowed in the server config context. However, since Apache version 1.3.4, the defaultaccess.conffile which ships with Apache contains only comments, and all directives are placed in the main server configuration file,httpd.conf.

IfAccessConfigpoints to a directory, rather than a file, Apache will read all files in that directory, and any subdirectory, and parse those as configuration files.

Alternatively you can use a wildcard to limit the scope; i.e to only *.conf files.

Note that by default any file in the specified directory will be loaded as a configuration file.

So make sure that you don’t have stray files in this directory by mistake, such as temporary files created by your editor, for example.

See also: Include and ResourceConfig.


AccessFileName directive

Syntax: AccessFileName filename [filename] ...
Default:AccessFileName .htaccess
Context: server config, virtual host
Status: core
Compatibility: AccessFileName can accept more than one filename only in Apache 1.3 and later

When returning a document to the client the server looks for the first existing access control file from this list of names in every directory of the path to the document, if access control files are enabled for that directory. For example:

AccessFileName .acl

before returning the document /usr/local/web/index.html, the server will read /.acl, /usr/.acl, /usr/local/.acl and /usr/local/web/.acl for directives, unless they have been disabled with

<Directory />
AllowOverride None
</Directory>

See Also: AllowOverride and Configuration Files


AddDefaultCharset directive

Syntax: AddDefaultCharset On|Off|charset
Context: all
Status: core
Default:AddDefaultCharset Off
Compatibility: AddDefaultCharset is only available in Apache 1.3.12 and later

This directive specifies the name of the character set that will be added to any response that does not have any parameter on the content type in the HTTP headers. This will override any character set specified in the body of the document via aMETAtag. A setting ofAddDefaultCharset Offdisables this functionality.AddDefaultCharset Onenables Apache’s internal default charset ofiso-8859-1as required by the directive. You can also specify an alternate charset to be used.

For example:

AddDefaultCharset utf-8

Note: This will not have any effect on the Content-Type and character set for default Apache-generated status pages (such as ‘404 Not Found’ or ‘301 Moved Permanently’) because those have an actual character set (that in which the hard-coded page content is written) and don’t need to have a default applied.


AddModule directive

Syntax: AddModule module [module] ...
Context: server config 
Status: core
Compatibility: AddModule is only available in Apache 1.2 and later

The server can have modules compiled in which are not actively in use. This directive can be used to enable the use of those modules. The server comes with a pre-loaded list of active modules; this list can be cleared with theClearModuleList directive.

For example:

AddModule mod_include.c

The ordering ofAddModulelines is important. Modules are listed in reverse priority order — the ones that come later can override the behavior of those that come earlier. This can have visible effects; for instance, if UserDir followed Alias, you couldn’t alias out a particular user’s home directory. For more information and a recommended ordering, seesrc/Configuration.tmplin the Apache source distribution.

See alsoClearModuleList and LoadModule


AllowOverride directive

Syntax: AllowOverride All|None|directive-type [directive-type] ...
Default:AllowOverride All
Context: directory
Status: core

When the server finds an .htaccess file (as specified by AccessFileName) it needs to know which directives declared in that file can override earlier access information.

Note:AllowOverrideis only valid in <Directory> sections, not in <Location> or <Files> sections, as implied by the Context section above.

When this directive is set toNone, then .htaccess files are completely ignored. In this case, the server will not even attempt to read .htaccess files in the filesystem.

When this directive is set toAll, then any directive which has the .htaccess Context is allowed in .htaccess files.

The directive-type can be one of the following groupings of directives.

AuthConfig

Allow use of the authorization directives (AuthDBMGroupFileAuthDBMUserFileAuthGroupFileAuthName,AuthDigestRealmSeedAuthTypeAuthUserFileRequireetc.).

FileInfo

Allow use of the directives controlling document types (AddEncodingAddLanguageAddTypeDefaultTypeErrorDocument,LanguagePriorityetc.).

Indexes

Allow use of the directives controlling directory indexing (AddDescriptionAddIconAddIconByEncodingAddIconByType,DefaultIconDirectoryIndexFancyIndexingHeaderNameIndexIgnoreIndexOptionsReadmeNameetc.).

Limit

Allow use of the directives controlling host access (AllowDeny and Order).

Options

Allow use of the directives controlling specific directory features (Options and XBitHack).

Example:

AllowOverride AuthConfig Indexes

See Also: AccessFileName and Configuration Files


AuthName directive

Syntax: AuthName auth-domain
Context: directory, .htaccess
Override: AuthConfig
Status: core

This directive sets the name of the authorization realm for a directory. This realm is given to the client so that the user knows which username and password to send. AuthName takes a single argument; if the realm name contains spaces, it must be enclosed in quotation marks. It must be accompanied by AuthType and Require directives, and directives such asAuthUserFile and AuthGroupFile to work.

For example:

AuthName "Top Secret"

The string provided for theAuthNameis what will appear in the password dialog provided by most browsers.

See also: Authentication, Authorization, and Access Control


AuthDigestRealmSeed directive

Syntax: AuthDigestRealmSeed secret-real-string
Context: directory, .htaccess
Override: AuthConfig
Status: core

This directive sets a per realm secret nonce prefix which is used to ensure that a captured username, password and realm string during a Digest exchange cannot be replayed at other places.

It only applies to mod_digest.html, the experimental mod_auth_digest.html implements its own (more advanced and also time sensitive) replay protection.

It must be accompanied by AuthType of type Digest, one or more Require directives, and directives such as AuthUserFileand AuthGroupFile to work.

See also: Authentication, Authorization, and Access Control


AuthType directive

Syntax: AuthType Basic|Digest
Context: directory, .htaccess
Override: AuthConfig
Status: core

This directive selects the type of user authentication for a directory. OnlyBasicandDigestare currently implemented. It must be accompanied by AuthName and Require directives, and directives such asAuthUserFile and AuthGroupFile to work.

When AuthDigest is used an AuthDigestRealmSeed should also be set.

See also: Authentication, Authorization, and Access Control


BindAddress directive

Syntax: BindAddress *|IP-address|domain-name
Default:BindAddress *
Context: server config
Status: core
Compatibility: BindAddress is deprecated and will be eliminated in Apache 2.0.

A Unix® http server can either listen for connections to every IP address of the server machine, or just one IP address of the server machine. If the argument to this directive is *, then the server will listen for connections on every IP address. Otherwise, the server can listen to only a specific IP-address or a fully-qualified Internet domain-name.

For example:

BindAddress 192.168.15.48

Only oneBindAddressdirective can be used.

This directive is deprecated and will be eliminated in Apache 2.0. Equivalent functionality and more control over the address and ports Apache listens to is available using theListendirective.

BindAddresscan be used as an alternative method for supporting virtual hosts using multiple independent servers, instead of using<VirtualHost>sections.

See Also: DNS Issues
See Also: Setting which addresses and ports Apache uses


BS2000Account directive

Syntax: BS2000Account account
Default: none
Context: server config
Status: core
Compatibility: BS2000Account is only available for BS2000 machines, as of Apache 1.3 and later.

TheBS2000Accountdirective is available for BS2000 hosts only. It must be used to define the account number for the non-privileged apache server user (which was configured using the User directive). This is required by the BS2000 POSIX subsystem (to change the underlying BS2000 task environment by performing a sub-LOGON) to prevent CGI scripts from accessing resources of the privileged account which started the server, usually SYSROOT.
Only oneBS2000Accountdirective can be used.

See Also: Apache EBCDIC port


CGICommandArgs directive

Syntax: CGICommandArgs On|Off
Default: CGICommandArgs On
Context: directory, .htaccess
Override: Options
Status: core
Compatibility: Available in Apache 1.3.24 and later.

Way back when the internet was a safer, more naive place, it was convenient for the server to take a query string that did not contain an ‘=’ sign and to parse and pass it to a CGI program as command line args. For example,<IsIndex>generated searches often work in this way. The default behavior in Apache is to maintain this behavior for backwards compatibility, although it is generally regarded as unsafe practice today. Most CGI programs do not take command line parameters, but among those that do, many are unaware of this method of passing arguments and are therefore vulnerable to malicious clients passing unsafe material in this way. SettingCGICommandArgs Offis recommended to protect such scripts with little loss in functionality.


ClearModuleList directive

Syntax: ClearModuleList
Context: server config
Status: core
Compatibility: ClearModuleList is only available in Apache 1.2 and later

The server comes with a built-in list of active modules. This directive clears the list. It is assumed that the list will then be re-populated using the AddModule directive.

See alsoAddModule and LoadModule


ContentDigest directive

Syntax: ContentDigest on|off
Default:ContentDigest off
Context: server config, virtual host, directory, .htaccess
Override: Options
Status: experimental
Compatibility: ContentDigest is only available in Apache 1.1 and later

This directive enables the generation ofContent-MD5headers as defined in RFC1864 respectively RFC2068.

MD5 is an algorithm for computing a “message digest” (sometimes called “fingerprint”) of arbitrary-length data, with a high degree of confidence that any alterations in the data will be reflected in alterations in the message digest.

TheContent-MD5header provides an end-to-end message integrity check (MIC) of the entity-body. A proxy or client may check this header for detecting accidental modification of the entity-body in transit. Example header:

   Content-MD5: AuLb7Dp1rqtRtxz2m9kRpA==  

Note that this can cause performance problems on your server since the message digest is computed on every request (the values are not cached).

Content-MD5is only sent for documents served by the core, and not by any module. For example, SSI documents, output from CGI scripts, and byte range responses do not have this header.


CoreDumpDirectory directive

Syntax: CoreDumpDirectory directory-path
Default: the same location as ServerRoot
Context: server config
Status: core

This controls the directory to which Apache attempts to switch before dumping core. The default is in the ServerRootdirectory, however since this should not be writable by the user the server runs as, core dumps won’t normally get written. If you want a core dump for debugging, you can use this directive to place it in a different location.

For example:

CoreDumpDirectory /tmp


DefaultType directive

Syntax: DefaultType MIME-type
Default:DefaultType text/plain
Context: server config, virtual host, directory, .htaccess
Override: FileInfo
Status: core

There will be times when the server is asked to provide a document whose type cannot be determined by its MIME types mappings.

The server must inform the client of the content-type of the document, so in the event of an unknown type it uses theDefaultType. For example:

DefaultType image/gif

would be appropriate for a directory which contained many gif images with filenames missing the .gif extension.

See also: AddType and TypesConfig.


<Directory> directive

Syntax: <Directory directory-path|proxy:url-path> ... </Directory> 
Context: server config, virtual host
Status: Core.

<Directory> and </Directory> are used to enclose a group of directives which will apply only to the named directory and sub-directories of that directory. Any directive which is allowed in a directory context may be used. Directory-path is either the full path to a directory, or a wild-card string. In a wild-card string, `?’ matches any single character, and `*’ matches any sequences of characters. As of Apache 1.3, you may also use `[ ]’ character ranges like in the shell. Also as of Apache 1.3 none of the wildcards match a `/’ character, which more closely mimics the behavior of Unix shells. Example:

   <Directory /usr/local/httpd/htdocs>     Options Indexes FollowSymLinks     </Directory>  

Apache 1.2 and above: Extended regular expressions can also be used, with the addition of the~character. For example:

   <Directory ~ "^/www/.*/[0-9]{3}">  

would match directories in /www/ that consisted of three numbers.

If multiple (non-regular expression) directory sections match the directory (or its parents) containing a document, then the directives are applied in the order of shortest match first, interspersed with the directives from the .htaccessfiles. For example, with

<Directory />
AllowOverride None
</Directory>

<Directory /home/*>
AllowOverride FileInfo
</Directory>

for access to the document/home/web/dir/doc.htmlthe steps are:

  • Apply directiveAllowOverride None(disabling.htaccessfiles).
  • Apply directiveAllowOverride FileInfo(for directory/home/web).
  • Apply any FileInfo directives in/home/web/.htaccess

Regular expression directory sections are handled slightly differently by Apache 1.2 and 1.3. In Apache 1.2 they are interspersed with the normal directory sections and applied in the order they appear in the configuration file. They are applied only once, and apply when the shortest match possible occurs. In Apache 1.3 regular expressions are not considered until after all of the normal sections have been applied. Then all of the regular expressions are tested in the order they appeared in the configuration file. For example, with

<Directory ~ abc$>
... directives here ...
</Directory>

Suppose that the filename being accessed is/home/abc/public_html/abc/index.html. The server considers each of/,/home,/home/abc,/home/abc/public_html, and/home/abc/public_html/abcin that order. In Apache 1.2, when/home/abcis considered, the regular expression will match and be applied. In Apache 1.3 the regular expression isn't considered at all at that point in the tree. It won't be considered until after all normal <Directory>s and.htaccessfiles have been applied. Then the regular expression will match on/home/abc/public_html/abcand be applied.

Note that the default Apache access for <Directory /> is Allow from All. This means that Apache will serve any file mapped from an URL. It is recommended that you change this with a block such as

 <Directory />       Order Deny,Allow       Deny from All   </Directory>  

and then override this for directories you want accessible. See the Security Tips page for more details.

<Directory> directives cannot nest, and cannot appear in a <Limit> or <LimitExcept> section.

If you have mod_proxy enabled, you can use theproxy:syntax to apply configuration directives to proxied content. The syntax for this is to specify the proxied URLs to which you wish to apply the configuration, or to specify*to apply to all proxied content:

To apply to all proxied content:

   <Directory proxy:*>       ... directives here ...     </Directory>     

To apply to just a subset of proxied content:

   <Directory proxy:http://www.example.com/>       ... directives here ...     </Directory>     

See alsoHow Directory, Location and Files sections work for an explanation of how these different sections are combined when a request is received

See alsoDirectoryMatch


<DirectoryMatch>

Syntax: <DirectoryMatch regex> ... </DirectoryMatch> 
Context: server config, virtual host
Status: Core.
Compatibility: Available in Apache 1.3 and later

<DirectoryMatch> and </DirectoryMatch> are used to enclose a group of directives which will apply only to the named directory and sub-directories of that directory, the same as <Directory>. However, it takes as an argument a regular expression. For example:

   <DirectoryMatch "^/www/.*/[0-9]{3}">  

would match directories in /www/ that consisted of three numbers.

See Also: <Directory> for a description of how regular expressions are mixed in with normal <Directory>s.
See alsoHow Directory, Location and Files sections work for an explanation of how these different sections are combined when a request is received


DocumentRoot directive

Syntax: DocumentRoot directory-path
Default:DocumentRoot /usr/local/apache/htdocs
Context: server config, virtual host
Status: core

This directive sets the directory from which httpd will serve files. Unless matched by a directive like Alias, the server appends the path from the requested URL to the document root to make the path to the document. Example:

DocumentRoot /usr/web

then an access tohttp://www.my.host.com/index.htmlrefers to/usr/web/index.html.

There appears to be a bug in mod_dir which causes problems when the DocumentRoot has a trailing slash (i.e., “DocumentRoot /usr/web/”) so please avoid that.


EBCDICConvert

Syntax: EBCDICConvert On|Off[=direction] extension [extension] ...
Context: server config, virtual host, directory, .htaccess
Status: core
Override: FileInfo
Compatibility: The configurable EBCDIC conversion is only available in Apache 1.3.19 and later, and on EBCDIC based platforms.

The EBCDICConvert directive maps the given filename extensions to the specified conversion setting (On or Off). File extensions may be specified with or without a leading dot.

If the optional format On=direction (or Off=direction) is used, where direction is one of In, Out or InOut, then the directive only applies to the specified transfer direction (In: uploaded content in a PUT or POST request, Out: returned content in a GET or POST request, and InOut: conversion in both directions).
Otherwise, InOut (conversion in both directions) is implied.

Conversion configuration based on file extension is tested prior to configuration based on MIME type, to allow for generic MIME based rules to be overridden by a more specific file extension (several file extensions may exist for the same MIME type).

Example:
With a configuration like the following, the normal *.html files contain HTML text in EBCDIC encoding, while *.ahtmlfiles contain HTML text in ASCII encoding:

    # *.html and *.ahtml contain HTML text:      AddType  text/html  .html .ahtml        # *.ahtml is not converted (contains ASCII text already):      EBCDICConvert       Off .ahtml        # All other text/html files presumably contain EBCDIC text:      EBCDICConvertByType On  text/html  

 

See alsoEBCDICConvertByType and Overview of the EBCDIC Conversion Functions


EBCDICConvertByType

Syntax: EBCDICConvertByType On|Off[=direction] mimetype [mimetype] ...
Context: server config, virtual host, directory, .htaccess
Status: core
Override: FileInfo
Compatibility: The configurable EBCDIC conversion is only available in Apache 1.3.19 and later, and on EBCDIC based platforms.

The EBCDICConvertByType directive maps the given MIME type (optionally containing wildcards) to the specified conversion setting (On or Off).

If the optional format On=direction (or Off=direction) is used, where direction is one of In, Out or InOut, then the directive only applies to the specified transfer direction (In: uploaded content in a PUT or POST request, Out: returned content in a GET or POST request, and InOut: conversion in both directions).
Otherwise, InOut (conversion in both directions) is implied.

Example:
A useful standard configuration should at least contain the following defaults:

    # All text documents are stored as EBCDIC files:      EBCDICConvertByType On  text/* message/* multipart/*      EBCDICConvertByType On  application/x-www-form-urlencoded \                  model/vrml application/postscript      # All other files are assumed to be binary:      EBCDICConvertByType Off */*  

If you serve ASCII documents only, for example from an NFS mounted unix server, use:

    # All documents are ASCII already:      EBCDICConvertByType Off */*  

See alsoEBCDICConvert and Overview of the EBCDIC Conversion Functions


EBCDICKludge

Syntax: EBCDICKludge On|Off
Default:EBCDICKludge Off
Context: server config, virtual host, directory, .htaccess
Status: core
Override: FileInfo
Compatibility: EBCDICKludge is only available in Apache 1.3.19 and later, and on EBCDIC based platforms. It is deprecated and will be withdrawn in a future version.

The EBCDICKludge is provided for the backward compatible behavior with apache versions 1.3.0 through 1.3.18. In these versions, all files with MIME types starting with “text/”, “message/” or “multipart/” or with type “application/x-www-form-urlencoded” would be converted by default, all other documents were returned unconverted. Only if a MIME type “text/x-ascii-subtype” was configured for a certain document, the document was assumed to be in ASCII format already, and was not converted again. Instead, the “x-ascii-” was removed from the type, resulting in the MIME type “text/subtype” being returned for the document.

If the EBCDICKludge directive is set to On, and if none of the file extensions configured with the EBCDICConvertdirective matches in the current context, then the server tests for a MIME type of the format type/x-ascii-subtype. If the document has such a type, then the “x-ascii-” substring is removed and the conversion set to Off. This allows for overriding the implicit assumption that all text files are stored in EBCDIC format, for example when serving documents from an NFS mounted directory with ASCII documents.
By using the EBCDICKludge, there is no way to force one of the other MIME types (e.g., model/vrml) to be treated as an EBCDIC text file. Use of the EBCDICConvertByType directive mentioned above is the preferred way to configure such a conversion. (Before Apache version 1.3.19, there was no way at all to force these binary documents to be treated as EBCDIC text files.)

See alsoEBCDICConvertEBCDICConvertByType and Overview of the EBCDIC Conversion Functions


EnableExceptionHook directive

Syntax: EnableExceptionHook on|off
Default:EnableExceptionHook off
Context: server config
Status: core
Compatibility: EnableExceptionHook is available in Apache 1.3.30 and later

EnableExceptionHookcontrols whether or not an exception hook implemented by a module will be called after a child process crash. The exception hook allows modules to log diagnostic information that may help determine the cause of the crash.


ErrorDocument directive

Syntax: ErrorDocument error-code document
Context: server config, virtual host, directory, .htaccess
Status: core
Override: FileInfo
Compatibility: The directory and .htaccess contexts are only available in Apache 1.1 and later.

In the event of a problem or error, Apache can be configured to do one of four things,

  1. output a simple hardcoded error message
  2. output a customized message
  3. redirect to a local URL-path to handle the problem/error
  4. redirect to an external URL to handle the problem/error

The first option is the default, while options 2-4 are configured using theErrorDocumentdirective, which is followed by the HTTP response code and a message or URL.

Messages in this context begin with a single double-quote character ("), which does not form part of the message itself. Apache will sometimes offer additional information regarding the problem/error.

URLs can begin with a slash (/) for local URLs, or be a full URL which the client can resolve. Examples:

ErrorDocument 500 http://foo.example.com/cgi-bin/tester
ErrorDocument 404 /cgi-bin/bad_urls.pl
ErrorDocument 401 /subscription_info.html
ErrorDocument 403 "Sorry can't allow you access today

Note that when you specify anErrorDocumentthat points to a remote URL (ie. anything with a method such as “http” in front of it), Apache will send a redirect to the client to tell it where to find the document, even if the document ends up being on the same server. This has several implications, the most important being that the client will not receive the original error status code, but instead will receive a redirect status code. This in turn can confuse web robots and other clients which try to determine if a URL is valid using the status code. In addition, if you use a remote URL in anErrorDocument 401, the client will not know to prompt the user for a password since it will not receive the 401 status code. Therefore,if you use an “ErrorDocument 401” directive then it must refer to a local document.

Microsoft Internet Explorer (MSIE) will by default ignore server-generated error messages when they are “too small” and substitute its own “friendly” error messages. The size threshold varies depending on the type of error, but in general, if you make your error document greater than 512 bytes, then MSIE will show the server-generated error rather than masking it. More information is available in Microsoft Knowledgebase article Q294807.

See Also: documentation of customizable responses. See the HTTP specification for a complete list of the status codes and their meanings.


ErrorLog directive

Syntax: ErrorLog file-path|syslog[:facility] 
Default:ErrorLog logs/error_log(Unix)
Default:ErrorLog logs/error.log(Windows and OS/2)
Context: server config, virtual host
Status: core

The error log directive sets the name of the file to which the server will log any errors it encounters. If the file-path does not begin with a slash (/) then it is assumed to be relative to the ServerRoot. If the file-path begins with a pipe (|) then it is assumed to be a command to spawn to handle the error log.

Examples

ErrorLog logs/vhost1.error

or

ErrorLog |/usr/local/bin/errorlog.pl

Apache 1.3 and above: Usingsysloginstead of a filename enables logging via syslogd(8) if the system supports it. The default is to use syslog facilitylocal7, but you can override this by using thesyslog:facility syntax where facility can be one of the names usually documented in syslog(1).

For example:

ErrorLog syslog

or

ErrorLog syslog:user

SECURITY: See the security tips document for details on why your security could be compromised if the directory where logfiles are stored is writable by anyone other than the user that starts the server.

See also: LogLevel and Apache Log Files


FileETag directive

Syntax: FileETag component ...
Context: server config, virtual host, directory, .htaccess
Override: FileInfo
Status: core
Compatibility: only available in Apache 1.3.23 versions and later.

The FileETag directive configures the file attributes that are used to create the ETag (entity tag) response header field when the document is based on a file. (The ETag value is used in cache management to save network bandwidth.) In Apache 1.3.22 and earlier, the ETag value was always formed from the file’s inode, size, and last-modified time (mtime). The FileETag directive allows you to choose which of these — if any — should be used. The recognized keywords are:

INode

The file’s i-node number will be included in the calculation

MTime

The date and time the file was last modified will be included

Size

The number of bytes in the file will be included

All

All available fields will be used (equivalent to ‘FileETag INode MTime Size‘)

None

If a document is file-based, no ETag field will be included in the response

The INode, MTime, and Size keywords may be prefixed with either ‘+’ or ‘-‘, which allow changes to be made to the default setting inherited from a broader scope. Any keyword appearing without such a prefix immediately and completely cancels the inherited setting.

If a directory’s configuration includes ‘FileETag INode MTime Size‘, and a subdirectory’s includes ‘FileETag -INode‘, the setting for that subdirectory (which will be inherited by any sub-subdirectories that don’t override it) will be equivalent to ‘FileETag MTime Size‘.


<Files> directive

Syntax: <Files filename> ... </Files>
Context: server config, virtual host, .htaccess
Status: core
Compatibility: only available in Apache 1.2 and above.

The <Files> directive provides for access control by filename. It is comparable to the <Directory> directive and<Location> directives. It should be matched with a </Files> directive. The directives given within this section will be applied to any object with a basename (last component of filename) matching the specified filename.<Files>sections are processed in the order they appear in the configuration file, after the <Directory> sections and.htaccessfiles are read, but before <Location> sections. Note that <Files> can be nested inside <Directory> sections to restrict the portion of the filesystem they apply to.

The filename argument should include a filename, or a wild-card string, where `?’ matches any single character, and `*’ matches any sequences of characters. Extended regular expressions can also be used, with the addition of the~character. For example:

   <Files ~ "\.(gif|jpe?g|png)$">  

would match most common Internet graphics formats. In Apache 1.3 and later, <FilesMatch> is preferred, however.

Note that unlike<Directory>and<Location>sections,<Files>sections can be used inside .htaccess files. This allows users to control access to their own files, at a file-by-file level. For example, to password protect a single file within a particular directory, you might add the following to your.htaccessfile:

    <Files admin.cgi>      Require group admin     
 </Files>

Remember that directives apply to subdirectories as well, so this will also protect files calledadmin.cgiin subdirectories, unless specifically overridden.

(See Require for details on using theRequiredirective)

See alsoHow Directory, Location and Files sections work for an explanation of how these different sections are combined when a request is received


<FilesMatch>

Syntax: <FilesMatch regex> ... </FilesMatch>
Context: server config, virtual host, .htaccess
Status: core
Compatibility: only available in Apache 1.3 and above.

The <FilesMatch> directive provides for access control by filename, just as the <Files> directive does. However, it accepts a regular expression. For example:

   <FilesMatch "\.(gif|jpe?g|png)$">  

would match most common Internet graphics formats.

See also: How Directory, Location and Files sections work for an explanation of how these different sections are combined when a request is received


Group directive

Syntax: Group unix-group
Default:Group #-1
Context: server config, virtual host
Status: core

The Group directive sets the group under which the server will answer requests. In order to use this directive, the stand-alone server must be run initially as root. Unix-group is one of:

A group name

Refers to the given group by name.

# followed by a group number.

Refers to a group by its number.

It is recommended that you set up a new group specifically for running the server. Some admins use usernobody, but this is not always possible or desirable.

Example:

Group www-group

Note: if you start the server as a non-root user, it will fail to change to the specified group, and will instead continue to run as the group of the original user.

Special note: Use of this directive in <VirtualHost> requires a properly configured suEXEC wrapper. When used inside a <VirtualHost> in this manner, only the group that CGIs are run as is affected. Non-CGI requests are still processed as the group specified in the main Group directive.

SECURITY: See User for a discussion of the security considerations.


HostnameLookups directive

Syntax: HostnameLookups on|off|double
Default:HostnameLookups off
Context: server config, virtual host, directory
Status: core
Compatibility:doubleavailable only in Apache 1.3 and above.
Compatibility: Default wasonprior to Apache 1.3.

This directive enables DNS lookups so that host names can be logged (and passed to CGIs/SSIs inREMOTE_HOST). The valuedoublerefers to doing double-reverse DNS. That is, after a reverse lookup is performed, a forward lookup is then performed on that result. At least one of the ip addresses in the forward lookup must match the original address. (In “tcpwrappers” terminology this is calledPARANOID.)

Regardless of the setting, when mod_access is used for controlling access by hostname, a double reverse lookup will be performed. This is necessary for security. Note that the result of this double-reverse isn’t generally available unless you setHostnameLookups double. For example, if onlyHostnameLookups onand a request is made to an object that is protected by hostname restrictions, regardless of whether the double-reverse fails or not, CGIs will still be passed the single-reverse result inREMOTE_HOST.

The default for this directive was previouslyonin versions of Apache prior to 1.3. It was changed tooffin order to save the network traffic for those sites that don’t truly need the reverse lookups done. It is also better for the end users because they don’t have to suffer the extra latency that a lookup entails. Heavily loaded sites should leave this directiveoff, since DNS lookups can take considerable amounts of time. The utility logresolve, provided in the /support directory, can be used to look up host names from logged IP addresses offline.


IdentityCheck directive

Syntax: IdentityCheck on|off
Default:IdentityCheck off
Context: server config, virtual host, directory
Status: core

This directive enables RFC1413-compliant logging of the remote user name for each connection, where the client machine runs identd or something similar. This information is logged in the access log.

The information should not be trusted in any way except for rudimentary usage tracking.

Note that this can cause serious latency problems accessing your server since every request requires one of these lookups to be performed. When firewalls are involved each lookup might possibly fail and add 30 seconds of latency to each hit. So in general this is not very useful on public servers accessible from the Internet.


<IfDefine> directive

Syntax: <IfDefine [!]parameter-name>  </IfDefine>
Default: None
Context: all
Status: Core
Compatibility: <IfDefine> is only available in 1.3.1 and later.

The <IfDefine test>…</IfDefine> section is used to mark directives that are conditional. The directives within an IfDefine section are only processed if the test is true. If test is false, everything between the start and end markers is ignored.

The test in the <IfDefine> section directive can be one of two forms:

  • parameter-name
  • !parameter-name

In the former case, the directives between the start and end markers are only processed if the parameter namedparameter-name is defined. The second format reverses the test, and only processes the directives if parameter-name isnot defined.

The parameter-name argument is a define as given on thehttpdcommand line via-Dparameter-, at the time the server was started.

<IfDefine> sections are nest-able, which can be used to implement simple multiple-parameter tests. Example:

  $ httpd -DReverseProxy ...      # httpd.conf    <IfDefine ReverseProxy>    LoadModule rewrite_module
 libexec/mod_rewrite.so    LoadModule proxy_module   libexec/libproxy.so    </IfDefine>  

<IfModule> directive

Syntax: <IfModule [!]module-name>  </IfModule>
Default: None
Context: all
Status: Core
Compatibility: IfModule is only available in 1.2 and later.

The <IfModule test>…</IfModule> section is used to mark directives that are conditional. The directives within an IfModule section are only processed if the test is true. If test is false, everything between the start and end markers is ignored.

The test in the <IfModule> section directive can be one of two forms:

  • module name
  • !module name

In the former case, the directives between the start and end markers are only processed if the module named module nameis included in Apache — either compiled in or dynamically loaded using LoadModule. The second format reverses the test, and only processes the directives if module name is not included.

The module name argument is the file name of the module, at the time it was compiled. For example,mod_rewrite.c.

<IfModule> sections are nest-able, which can be used to implement simple multiple-module tests.


Include directive

Syntax: Include file-path|directory-path|wildcard-path
Context: server config
Status: Core
Compatibility: Include is only available in Apache 1.3 and later. Wildcards were introduced in version 1.3.27.

This directive allows inclusion of other configuration files from within the server configuration files.

The file path specified may be a fully qualified path (i.e. starting with a slash), or may be relative to theServerRootdirectory.

New in Apache 1.3.13 is the feature that ifIncludepoints to a directory, rather than a file, Apache will read all files in that directory, and any subdirectory, and parse those as configuration files.

By using a wildcard this can be further limited to, say, just the ‘*.conf’ files.

Examples:

Include /usr/local/apache/conf/ssl.conf
Include /usr/local/apache/conf/vhosts/

Or, providing paths relative to yourServerRootdirectory:

Include conf/ssl.conf
Include conf/vhosts/

Make sure that an included directory does not contain any stray files, such as editor temporary files, for example, as Apache will attempt to read them in and use the contents as configuration directives, which may cause the server to fail on start up. Runningapachectl configtestwill give you a list of the files that are being processed during the configuration check:

root@host# apachectl configtest   Processing config directory: /usr/local/apache/conf/vhosts   Processing config file: /usr/local/apache/conf/vhosts/vhost1   Processing config file: /usr/local/apache/conf/vhosts/vhost2  Syntax OK  

This will help in verifying that you are getting only the files that you intended as part of your configuration.

See alsoapachectl


KeepAlive directive

Syntax: (Apache 1.1) KeepAlive max-requests
Default: (Apache 1.1)KeepAlive 5
Syntax: (Apache 1.2) KeepAlive on|off
Default: (Apache 1.2)KeepAlive On
Context: server config
Status: Core
Compatibility: KeepAlive is only available in Apache 1.1 and later.

The Keep-Alive extension to HTTP/1.0 and the persistent connection feature of HTTP/1.1 provide long-lived HTTP sessions which allow multiple requests to be sent over the same TCP connection. In some cases this has been shown to result in an almost 50% speedup in latency times for HTML documents with many images. To enable Keep-Alive connections in Apache 1.2 and later, setKeepAlive On.

For HTTP/1.0 clients, Keep-Alive connections will only be used if they are specifically requested by a client. In addition, a Keep-Alive connection with an HTTP/1.0 client can only be used when the length of the content is known in advance. This implies that dynamic content such as CGI output, SSI pages, and server-generated directory listings will generally not use Keep-Alive connections to HTTP/1.0 clients. For HTTP/1.1 clients, persistent connections are the default unless otherwise specified. If the client requests it, chunked encoding will be used in order to send content of unknown length over persistent connections.

Apache 1.1 only: Set max-requests to the maximum number of requests you want Apache to entertain per connection. A limit is imposed to prevent a client from hogging your server resources. Set this to0to disable support. In Apache 1.2 and 1.3, this is controlled through the MaxKeepAliveRequests directive instead.

See also MaxKeepAliveRequests.


KeepAliveTimeout directive

Syntax: KeepAliveTimeout seconds
Default:KeepAliveTimeout 15
Context: server config
Status: Core
Compatibility: KeepAliveTimeout is only available in Apache 1.1 and later.

The number of seconds Apache will wait for a subsequent request before closing the connection. Once a request has been received, the timeout value specified by theTimeoutdirective applies.

SettingKeepAliveTimeoutto a high value may cause performance problems in heavily loaded servers. The higher the timeout, the more server processes will be kept occupied waiting on connections with idle clients.


<Limit> directive

Syntax: <Limit method [method] ... > ... </Limit>
Context: any
Status: core

Access controls are normally effective for all access methods, and this is the usual desired behavior. In the general case, access control directives should not be placed within a<limit>section.

The purpose of the <Limit> directive is to restrict the effect of the access controls to the nominated HTTP methods. For all other methods, the access restrictions that are enclosed in the <Limit> bracket will have no effect. The following example applies the access control only to the methods POST, PUT, and DELETE, leaving all other methods unprotected:

<Limit POST PUT DELETE>
Require valid-user
</Limit>

The method names listed can be one or more of: GET, POST, PUT, DELETE, CONNECT, OPTIONS, PATCH, PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, and UNLOCK. The method name is case-sensitive. If GET is used it will also restrict HEAD requests. The TRACE method cannot be limited.

Warning: A <LimitExcept> section should always be used in preference to a <Limit> section when restricting access, since a <LimitExcept> section provides protection against arbitrary methods.


<LimitExcept> directive

Syntax: <LimitExcept method [method] ... > ... </LimitExcept>
Context: any
Status: core
Compatibility: Available in Apache 1.3.5 and later

<LimitExcept> and </LimitExcept> are used to enclose a group of access control directives which will then apply to any HTTP access method not listed in the arguments; i.e., it is the opposite of a <Limit> section and can be used to control both standard and nonstandard/unrecognized methods. See the documentation for <Limit> for more details.

For example:

    <LimitExcept POST GET>      Require valid-user      </LimitExcept>      

LimitInternalRecursion directive

Syntax: LimitInternalRecursion number [number]
Default:LimitInternalRecursion 20
Context: server config, virtual host
Status: core
Compatibility: LimitInternalRecursion is only available in Apache 1.3.28 and later.

An internal redirect happens, for example, when using the Action directive, which internally redirects the original request to a CGI script. A subrequest is Apache’s mechanism to find out what would happen for some URI if it were requested. For example, mod_dir uses subrequests to look for the files listed in the DirectoryIndex directive.

LimitInternalRecursionprevents the server from crashing when entering an infinite loop of internal redirects or subrequests. Such loops are usually caused by misconfigurations.

The directive stores two different limits, which are evaluated on per-request basis. The first number is the maximum number of internal redirects, that may follow each other. The second number determines, how deep subrequests may be nested. If you specify only one number, it will be assigned to both limits. A value of0means “unlimited”.

Example

    LimitInternalRecursion 5      

LimitRequestBody directive

Syntax: LimitRequestBody bytes
Default:LimitRequestBody 0
Context: server config, virtual host, directory, .htaccess
Status: core
Compatibility: LimitRequestBody is only available in Apache 1.3.2 and later.

This directive specifies the number of bytes from 0 (meaning unlimited) to 2147483647 (2GB) that are allowed in a request body.

The LimitRequestBody directive allows the user to set a limit on the allowed size of an HTTP request message body within the context in which the directive is given (server, per-directory, per-file or per-location). If the client request exceeds that limit, the server will return an error response instead of servicing the request. The size of a normal request message body will vary greatly depending on the nature of the resource and the methods allowed on that resource. CGI scripts typically use the message body for passing form information to the server. Implementations of the PUT method will require a value at least as large as any representation that the server wishes to accept for that resource.

This directive gives the server administrator greater control over abnormal client request behavior, which may be useful for avoiding some forms of denial-of-service attacks.

If, for example, you are permitting file upload to a particular location, and wich to limit the size of the uploaded file to 100K, you might use the following directive:

LimitRequestBody 102400

LimitRequestFields directive

Syntax: LimitRequestFields number
Default:LimitRequestFields 100
Context: server config
Status: core
Compatibility: LimitRequestFields is only available in Apache 1.3.2 and later.

Number is an integer from 0 (meaning unlimited) to 32767. The default value is defined by the compile-time constantDEFAULT_LIMIT_REQUEST_FIELDS(100 as distributed).

The LimitRequestFields directive allows the server administrator to modify the limit on the number of request header fields allowed in an HTTP request. A server needs this value to be larger than the number of fields that a normal client request might include. The number of request header fields used by a client rarely exceeds 20, but this may vary among different client implementations, often depending upon the extent to which a user has configured their browser to support detailed content negotiation. Optional HTTP extensions are often expressed using request header fields.

This directive gives the server administrator greater control over abnormal client request behavior, which may be useful for avoiding some forms of denial-of-service attacks. The value should be increased if normal clients see an error response from the server that indicates too many fields were sent in the request.

For example:

LimitRequestFields 50

LimitRequestFieldsize directive

Syntax: LimitRequestFieldsize bytes
Default:LimitRequestFieldsize 8190
Context: server config
Status: core
Compatibility: LimitRequestFieldsize is only available in Apache 1.3.2 and later.

This directive specifies the number of bytes from 0 to the value of the compile-time constantDEFAULT_LIMIT_REQUEST_FIELDSIZE(8190 as distributed) that will be allowed in an HTTP request header.

The LimitRequestFieldsize directive allows the server administrator to reduce the limit on the allowed size of an HTTP request header field below the normal input buffer size compiled with the server. A server needs this value to be large enough to hold any one header field from a normal client request. The size of a normal request header field will vary greatly among different client implementations, often depending upon the extent to which a user has configured their browser to support detailed content negotiation.

This directive gives the server administrator greater control over abnormal client request behavior, which may be useful for avoiding some forms of denial-of-service attacks.

For example:

LimitRequestFieldSize
 16380

Under normal conditions, the value should not be changed from the default.


LimitRequestLine directive

Syntax: LimitRequestLine bytes
Default:LimitRequestLine 8190
Context: server config
Status: core
Compatibility: LimitRequestLine is only available in Apache 1.3.2 and later.

This directive sets the number of bytes from 0 to the value of the compile-time constantDEFAULT_LIMIT_REQUEST_LINE(8190 as distributed) that will be allowed on the HTTP request-line.

The LimitRequestLine directive allows the server administrator to reduce the limit on the allowed size of a client’s HTTP request-line below the normal input buffer size compiled with the server. Since the request-line consists of the HTTP method, URI, and protocol version, the LimitRequestLine directive places a restriction on the length of a request-URI allowed for a request on the server. A server needs this value to be large enough to hold any of its resource names, including any information that might be passed in the query part of a GET request.

This directive gives the server administrator greater control over abnormal client request behavior, which may be useful for avoiding some forms of denial-of-service attacks.

For example:

LimitRequestLine 16380

Under normal conditions, the value should not be changed from the default.


Listen directive

Syntax: Listen [IP-address:]port
Context: server config
Status: core
Compatibility: Listen is only available in Apache 1.1 and later.

The Listen directive instructs Apache to listen to more than one IP address or port; by default it responds to requests on all IP interfaces, but only on the port given by thePortdirective.

Listen can be used instead of BindAddress and Port. It tells the server to accept incoming requests on the specified port or address-and-port combination. If the first format is used, with a port number only, the server listens to the given port on all interfaces, instead of the port given by the Port directive. If an IP address is given as well as a port, the server will listen on the given port and interface.

Note that you may still require a Port directive so that URLs that Apache generates that point to your server still work.

Multiple Listen directives may be used to specify a number of addresses and ports to listen to. The server will respond to requests from any of the listed addresses and ports.

For example, to make the server accept connections on both port 80 and port 8000, use:

   Listen 80   
  Listen 8000  

To make the server accept connections on two specified interfaces and port numbers, use

   Listen 192.170.2.1:80     Listen 192.170.2.5:8000  

See Also: DNS Issues
See Also: Setting which addresses and ports Apache uses
See Also: Known Bugs


ListenBacklog directive

Syntax: ListenBacklog backlog
Default:ListenBacklog 511
Context: server config
Status: Core
Compatibility: ListenBacklog is only available in Apache versions after 1.2.0.

The maximum length of the queue of pending connections. Generally no tuning is needed or desired, however on some systems it is desirable to increase this when under a TCP SYN flood attack. See the backlog parameter to thelisten(2)system call.

This will often be limited to a smaller number by the operating system. This varies from OS to OS. Also note that many OSes do not use exactly what is specified as the backlog, but use a number based on (but normally larger than) what is set.


<Location> directive

Syntax: <Location URL-path|URL> ... </Location>
Context: server config, virtual host
Status: core
Compatibility: Location is only available in Apache 1.1 and later.

The <Location> directive provides for access control by URL. It is similar to the <Directory> directive, and starts a subsection which is terminated with a </Location> directive.<Location>sections are processed in the order they appear in the configuration file, after the <Directory> sections and.htaccessfiles are read, and after the <Files> sections.

Note that URLs do not have to line up with the filesystem at all, it should be emphasized that <Location> operates completely outside the filesystem.

For all origin (non-proxy) requests, the URL to be matched is of the form/path/, and you should not include anyhttp://servernameprefix. For proxy requests, the URL to be matched is of the formscheme://servername/path, and you must include the prefix.

The URL may use wildcards In a wild-card string, `?’ matches any single character, and `*’ matches any sequences of characters.

Apache 1.2 and above: Extended regular expressions can also be used, with the addition of the~character. For example:

   <Location ~ "/(extra|special)/data">  

would match URLs that contained the substring “/extra/data” or “/special/data”. In Apache 1.3 and above, a new directive<LocationMatch> exists which behaves identical to the regex version of<Location>.

TheLocationfunctionality is especially useful when combined with theSetHandlerdirective. For example, to enable status requests, but allow them only from browsers at foo.com, you might use:

    <Location /status>      SetHandler server-status      Order Deny,Allow      Deny from all      Allow from .foo.com      </Location>  

Apache 1.3 and above note about / (slash): The slash character has special meaning depending on where in a URL it appears. People may be used to its behavior in the filesystem where multiple adjacent slashes are frequently collapsed to a single slash (i.e.,/home///foois the same as/home/foo). In URL-space this is not necessarily true. The<LocationMatch>directive and the regex version of<Location>require you to explicitly specify multiple slashes if that is your intention. For example,<LocationMatch ^/abc>would match the request URL/abcbut not the request URL//abc. The (non-regex)<Location>directive behaves similarly when used for proxy requests. But when (non-regex)<Location>is used for non-proxy requests it will implicitly match multiple slashes with a single slash. For example, if you specify<Location /abc/def>and the request is to/abc//defthen it will match.

See alsoHow Directory, Location and Files sections work for an explanation of how these different sections are combined when a request is received


<LocationMatch>

Syntax: <LocationMatch regex> ... </LocationMatch>
Context: server config, virtual host
Status: core
Compatibility: LocationMatch is only available in Apache 1.3 and later.

The <LocationMatch> directive provides for access control by URL, in an identical manner to <Location>. However, it takes a regular expression as an argument instead of a simple string. For example:

   <LocationMatch "/(extra|special)/data">  

would match URLs that contained the substring “/extra/data” or “/special/data”.

See also: How Directory, Location and Files sections work for an explanation of how these different sections are combined when a request is received


LockFile directive

Syntax: LockFile file-path
Default:LockFile logs/accept.lock
Context: server config
Status: core

The LockFile directive sets the path to the lockfile used when Apache is compiled with either USE_FCNTL_SERIALIZED_ACCEPT or USE_FLOCK_SERIALIZED_ACCEPT. This directive should normally be left at its default value. The main reason for changing it is if thelogsdirectory is NFS mounted, since the lockfile must be stored on a local disk. The PID of the main server process is automatically appended to the filename.

SECURITY: It is best to avoid putting this file in a world writable directory such as/var/tmpbecause someone could create a denial of service attack and prevent the server from starting by creating a lockfile with the same name as the one the server will try to create.


LogLevel directive

Syntax: LogLevel level
Default:LogLevel warn
Context: server config, virtual host
Status: core
Compatibility: LogLevel is only available in 1.3 or later.

LogLevel adjusts the verbosity of the messages recorded in the error logs (see ErrorLog directive). The following levels are available, in order of decreasing significance:

Level

Description

Example

emerg

Emergencies – system is unusable.

“Child cannot open lock file. Exiting”

alert

Action must be taken immediately.

“getpwuid: couldn’t determine user name from uid”

crit

Critical Conditions.

“socket: Failed to get a socket, exiting child”

error

Error conditions.

“Premature end of script headers”

warn

Warning conditions.

“child process 1234 did not exit, sending another SIGHUP”

notice

Normal but significant condition.

“httpd: caught SIGBUS, attempting to dump core in …”

info

Informational.

“Server seems busy, (you may need to increase StartServers, or Min/MaxSpareServers)…”

debug

Debug-level messages

“Opening config file …”

When a particular level is specified, messages from all other levels of higher significance will be reported as well.E.g., whenLogLevel infois specified, then messages with log levels ofnoticeandwarnwill also be posted.

Using a level of at leastcritis recommended.

For example:

LogLevel notice

NOTE: When logging to a regular file messages of the levelnoticecannot be suppressed and thus are always logged. However, this doesn’t apply when logging is done usingsyslog.


MaxClients directive

Syntax: MaxClients number
Default:MaxClients 256
Context: server config
Status: core

The MaxClients directive sets the limit on the number of simultaneous requests that can be supported; not more than this number of child server processes will be created. To configure more than 256 clients, you must edit the HARD_SERVER_LIMIT entry in httpd.h and recompile.

Any connection attempts over the MaxClients limit will normally be queued, up to a number based on the ListenBacklogdirective. Once a child process is freed at the end of a different request, the connection will then be serviced.


MaxKeepAliveRequests directive

Syntax: MaxKeepAliveRequests number
Default:MaxKeepAliveRequests 100
Context: server config
Status: core
Compatibility: Only available in Apache 1.2 and later.

The MaxKeepAliveRequests directive limits the number of requests allowed per connection when KeepAlive is on. If it is set to “0“, unlimited requests will be allowed. We recommend that this setting be kept to a high value for maximum server performance. In Apache 1.1, this is controlled through an option to the KeepAlive directive.

For example

MaxKeepAliveRequests 500

MaxRequestsPerChild directive

Syntax: MaxRequestsPerChild number
Default:MaxRequestsPerChild 0
Context: server config
Status: core

The MaxRequestsPerChild directive sets the limit on the number of requests that an individual child server process will handle. After MaxRequestsPerChild requests, the child process will die. If MaxRequestsPerChild is 0, then the process will never expire.

Setting MaxRequestsPerChild to a non-zero limit has two beneficial effects:

  • it limits the amount of memory that process can consume by (accidental) memory leakage;
  • by giving processes a finite lifetime, it helps reduce the number of processes when the server load reduces.

However, on Win32, It is recommended that this be set to 0. If it is set to a non-zero value, when the request count is reached, the child process exits, and is respawned, at which time it re-reads the configuration files. This can lead to unexpected behavior if you have modified a configuration file, but are not expecting the changes to be applied yet. See also ThreadsPerChild.

NOTE: For KeepAlive requests, only the first request is counted towards this limit. In effect, it changes the behavior to limit the number of connections per child.


MaxSpareServers directive

Syntax: MaxSpareServers number
Default:MaxSpareServers 10
Context: server config
Status: core

The MaxSpareServers directive sets the desired maximum number of idle child server processes. An idle process is one which is not handling a request. If there are more than MaxSpareServers idle, then the parent process will kill off the excess processes.

Tuning of this parameter should only be necessary on very busy sites. Setting this parameter to a large number is almost always a bad idea.

Note that this is the maximum number of spare servers, not the maximum total number of client requests that can be handled at one time. If you wish to limit that number, see the MaxClients directive.

This directive has no effect when used with the Apache Web server on a Microsoft Windows platform.

See also MinSpareServersStartServers, and MaxClients.


MinSpareServers directive

Syntax: MinSpareServers number
Default:MinSpareServers 5
Context: server config
Status: core

The MinSpareServers directive sets the desired minimum number of idle child server processes. An idle process is one which is not handling a request. If there are fewer than MinSpareServers idle, then the parent process creates new children at a maximum rate of 1 per second.

Tuning of this parameter should only be necessary on very busy sites. Setting this parameter to a large number is almost always a bad idea.

Note that setting this directive to some value m ensures that you will always have at least n + mhttpdprocesses running when you have n active client requests.

This directive has no effect on Microsoft Windows.

See also MaxSpareServersStartServers, and MaxClients.


NameVirtualHost directive

Syntax: NameVirtualHost addr[:port]
Context: server config
Status: core
Compatibility: NameVirtualHost is only available in Apache 1.3 and later

The NameVirtualHost directive is a required directive if you want to configure name-based virtual hosts.

Although addr can be hostname it is recommended that you always use an IP address or wildcard, e.g.

NameVirtualHost 111.22.33.44

With the NameVirtualHost directive you specify the IP address on which the server will receive requests for the name-based virtual hosts. This will usually be the address to which your name-based virtual host names resolve. In cases where a firewall or other proxy receives the requests and forwards them on a different IP address to the server, you must specify the IP address of the physical interface on the machine which will be servicing the requests. If you have multiple name-based hosts on multiple addresses, repeat the directive for each address.

Note: the “main server” and any _default_ servers will never be served for a request to a NameVirtualHost IP Address (unless for some reason you specify NameVirtualHost but then don’t define any VirtualHosts for that address).

Optionally you can specify a port number on which the name-based virtual hosts should be used, e.g.

NameVirtualHost 111.22.33.44:8080

In Apache 1.3.13 and greater you can specify a*for the addr. This creates a wildcard NameVirtualHost which will match connections to any address that isn't configured with a more specific NameVirtualHost directive or <VirtualHost> section. This is useful if you want only name-based virtual hosts and you don't want to hard-code the server's IP address into the configuration file.

See also: Apache Virtual Host documentation


Options directive

Syntax: Options [+|-]option [[+|-]option] ...
Context: server config, virtual host, directory, .htaccess
Override: Options
Status: core

The Options directive controls which server features are available in a particular directory.

option can be set toNone, in which case none of the extra features are enabled, or one or more of the following:

All

All options except for MultiViews. This is the default setting.

ExecCGI

Execution of CGI scripts is permitted.

FollowSymLinks

The server will follow symbolic links in this directory.
Note: even though the server follows the symlink it does not change the pathname used to match against<Directory>sections.
Note: this option gets ignored if set inside a <Location> section.

Includes

Server-side includes are permitted.

IncludesNOEXEC

Server-side includes are permitted, but the #exec command and #exec CGI are disabled. It is still possible to #include virtual CGI scripts from ScriptAliase’d directories.

Indexes

If a URL which maps to a directory is requested, and the there is no DirectoryIndex (e.g., index.html) in that directory, then the server will return a formatted listing of the directory.

MultiViews

Content negotiated MultiViews are allowed.

SymLinksIfOwnerMatch

The server will only follow symbolic links for which the target file or directory is owned by the same user id as the link.
Note: this option gets ignored if set inside a <Location> section.

Normally, if multipleOptionscould apply to a directory, then the most specific one is taken complete; the options are not merged. However if all the options on theOptionsdirective are preceded by a + or - symbol, the options are merged. Any options preceded by a + are added to the options currently in force, and any options preceded by a - are removed from the options currently in force.

For example, without any + and – symbols:

<Directory /web/docs>
Options Indexes FollowSymLinks
</Directory>
<Directory /web/docs/spec>
Options Includes
</Directory>

then onlyIncludeswill be set for the /web/docs/spec directory. However if the secondOptionsdirective uses the + and - symbols:

<Directory /web/docs>
Options Indexes FollowSymLinks
</Directory>
<Directory /web/docs/spec>
Options +Includes -Indexes
</Directory>

then the optionsFollowSymLinksandIncludesare set for the /web/docs/spec directory.

Note: Using-IncludesNOEXECor-Includesdisables server-side includes completely regardless of the previous setting.

The default in the absence of any other settings isAll.


PidFile directive

Syntax: PidFile file-path
Default:PidFile logs/httpd.pid
Context: server config
Status: core

The PidFile directive sets the file to which the server records the process id of the daemon. If the filename does not begin with a slash (/) then it is assumed to be relative to the ServerRoot. The PidFile is only used in standalone mode.

It is often useful to be able to send the server a signal, so that it closes and then reopens its ErrorLog and TransferLog, and re-reads its configuration files. This is done by sending a SIGHUP (kill -1) signal to the process id listed in the PidFile.

The PidFile is subject to the same warnings about log file placement and security.


Port directive

Syntax: Port number
Default:Port 80
Context: server config
Status: core

Number is a number from 0 to 65535; some port numbers (especially below 1024) are reserved for particular protocols. See/etc/servicesfor a list of some defined ports; the standard port for the http protocol is 80.

The Port directive has two behaviors, the first of which is necessary for NCSA backwards compatibility (and which is confusing in the context of Apache).

  • In the absence of any Listen or BindAddress directives specifying a port number, a Port directive given in the “main server” (i.e., outside any <VirtualHost> section) sets the network port on which the server listens. If there are any Listen or BindAddress directives specifying:numberthen Port has no effect on what address the server listens at.
  • The Port directive sets theSERVER_PORTenvironment variable (for CGI and SSI), and is used when the server must generate a URL that refers to itself (for example when creating an external redirect to itself). This behavior is modified by UseCanonicalName.

The primary behavior of Port should be considered to be similar to that of the ServerName directive. The ServerName and Port together specify what you consider to be the canonical address of the server. (See also UseCanonicalName.)

Port 80 is one of Unix’s special ports. All ports numbered below 1024 are reserved for system use, i.e., regular (non-root) users cannot make use of them; instead they can only use higher port numbers. To use port 80, you must start the server from the root account. After binding to the port and before accepting requests, Apache will change to a low privileged user as set by the User directive.

If you cannot use port 80, choose any other unused port. Non-root users will have to choose a port number higher than 1023, such as 8000.

SECURITY: if you do start the server as root, be sure not to set User to root. If you run the server as root whilst handling connections, your site may be open to a major security attack.


ProtocolReqCheck directive

Syntax: ProtocolReqCheck on|off
Default:ProtocolReqCheck on
Context: server config 
Status: core
Compatibility: ProtocolReqCheck is only available in Apache 1.3.27 and later.

This directive enables strict checking of the Protocol field in the Request line. Versions of Apache prior to 1.3.26 would silently accept bogus Protocols (such asHTTP-1.1) and assumeHTTP/1.0. Instead, now the Protocol field must be valid. If the pre-1.3.26 behavior is desired or required, it can be enabled via settingProtocolReqCheck off.


Require directive

Syntax: Require entity-name [entity-name] ...
Context: directory, .htaccess
Override: AuthConfig
Status: core

This directive selects which authenticated users can access a resource. The allowed syntaxes are:

  • Require user userid [userid] …

Only the named users can access the resource.

  • Require group group-name [group-name] …

Only users in the named groups can access the resource.

  • Require valid-user

All valid users can access the resource.

  • file-owner

Only the user, whose name matches the system’s name for the file owner, can access the resource.
[Available after Apache 1.3.20]

  • file-group

Only the members of the group, whose name matches the system’s name of the file owner group, can access the resource.
[Available after Apache 1.3.20]

Require must be accompanied by AuthName and AuthType directives, and directives such as AuthUserFile and AuthGroupFile(to define users and groups) in order to work correctly. Example:

AuthType Basic
AuthName "Restricted Directory"
AuthUserFile /web/users
AuthGroupFile /web/groups
Require group admin

Access controls which are applied in this way are effective for all methods. This is what is normally desired. If you wish to apply access controls only to specific methods, while leaving other methods unprotected, then place theRequirestatement into a <Limit> section

See also Satisfy and mod_access.


ResourceConfig directive

Syntax: ResourceConfig file-path|directory-path|wildcard-path
Default:ResourceConfig conf/srm.conf
Context: server config, virtual host
Status: core 
Compatibility: The ability to specify a directory, rather than a file name, is only available in Apache 1.3.13 and later.

The server will read this file for more directives after reading the httpd.conf file. File-path is relative to theServerRoot. This feature can be disabled using:

ResourceConfig /dev/null

Or, on Win32 servers,

ResourceConfig nul

Historically, this file contained most directives except for server configuration directives and <Directory> sections; in fact it can now contain any server directive allowed in the server config context. However, since Apache version 1.3.4, the defaultsrm.conffile which ships with Apache contains only comments, and all directives are placed in the main server configuration file,httpd.conf.

IfResourceConfigpoints to a directory, rather than a file, Apache will read all files in that directory, and any subdirectory, and parse those as configuration files.

Alternatively you can use a wildcard to limit the scope; i.e to only *.conf files.

Note that by default any file in the specified directory will be loaded as a configuration file.

So make sure that you don’t have stray files in this directory by mistake, such as temporary files created by your editor, for example.

See also AccessConfig.


RLimitCPU directive

Syntax: RLimitCPU number|max [number|max] 
Default: Unset; uses operating system defaults 
Context: server config, virtual host
Status: core
Compatibility: RLimitCPU is only available in Apache 1.2 and later

Takes 1 or 2 parameters. The first parameter sets the soft resource limit for all processes and the second parameter sets the maximum resource limit. Either parameter can be a number, ormaxto indicate to the server that the limit should be set to the maximum allowed by the operating system configuration. Raising the maximum resource limit requires that the server is running as root, or in the initial startup phase.

This applies to processes forked off from Apache children servicing requests, not the Apache children themselves. This includes CGI scripts and SSI exec commands, but not any processes forked off from the Apache parent such as piped logs.

CPU resource limits are expressed in seconds per process.

See also RLimitMEM or RLimitNPROC.


RLimitMEM directive

Syntax: RLimitMEM number|max [number|max]
Default: Unset; uses operating system defaults 
Context: server config, virtual host
Status: core
Compatibility: RLimitMEM is only available in Apache 1.2 and later

Takes 1 or 2 parameters. The first parameter sets the soft resource limit for all processes and the second parameter sets the maximum resource limit. Either parameter can be a number, ormaxto indicate to the server that the limit should be set to the maximum allowed by the operating system configuration. Raising the maximum resource limit requires that the server is running as root, or in the initial startup phase.

This applies to processes forked off from Apache children servicing requests, not the Apache children themselves. This includes CGI scripts and SSI exec commands, but not any processes forked off from the Apache parent such as piped logs.

Memory resource limits are expressed in bytes per process.

See also RLimitCPU or RLimitNPROC.


RLimitNPROC directive

Syntax: RLimitNPROC number|max [number|max]
Default: Unset; uses operating system defaults 
Context: server config, virtual host
Status: core
Compatibility: RLimitNPROC is only available in Apache 1.2 and later

Takes 1 or 2 parameters. The first parameter sets the soft resource limit for all processes and the second parameter sets the maximum resource limit. Either parameter can be a number, ormaxto indicate to the server that the limit should be set to the maximum allowed by the operating system configuration. Raising the maximum resource limit requires that the server is running as root, or in the initial startup phase.

This applies to processes forked off from Apache children servicing requests, not the Apache children themselves. This includes CGI scripts and SSI exec commands, but not any processes forked off from the Apache parent such as piped logs.

Process limits control the number of processes per user.

Note: If CGI processes are not running under userids other than the web server userid, this directive will limit the number of processes that the server itself can create. Evidence of this situation will be indicated by cannot forkmessages in the error_log.

See also RLimitMEM or RLimitCPU.


Satisfy directive

Syntax: Satisfy any|all
Default: Satisfy all
Context: directory, .htaccess
Status: core
Compatibility: Satisfy is only available in Apache 1.2 and later

Access policy if bothAllowandRequireused. The parameter can be either ‘all’ or ‘any’. This directive is only useful if access to a particular area is being restricted by both username/password and client host address. In this case the default behavior (“all”) is to require that the client passes the address access restriction and enters a valid username and password. With the “any” option the client will be granted access if they either pass the host restriction or enter a valid username and password. This can be used to password restrict an area, but to let clients from particular addresses in without prompting for a password.

See also Require and Allow.


ScoreBoardFile directive

Syntax: ScoreBoardFile file-path
Default:ScoreBoardFile logs/apache_status
Context: server config
Status: core

The ScoreBoardFile directive is required on some architectures to place a file that the server will use to communicate between its children and the parent. The easiest way to find out if your architecture requires a scoreboard file is to run Apache and see if it creates the file named by the directive. If your architecture requires it then you must ensure that this file is not used at the same time by more than one invocation of Apache.

If you have to use a ScoreBoardFile then you may see improved speed by placing it on a RAM disk. But be careful that you heed the same warnings about log file placement and security.

Apache 1.2 and above:

Linux 1.x users might be able to add-DHAVE_SHMGET -DUSE_SHMGET_SCOREBOARDto theEXTRA_CFLAGSin yourConfiguration. This might work with some 1.x installations, but won’t work with all of them. (Prior to 1.3b4,HAVE_SHMGETwould have sufficed.)

SVR4 users should consider adding-DHAVE_SHMGET -DUSE_SHMGET_SCOREBOARDto theEXTRA_CFLAGSin yourConfiguration. This is believed to work, but we were unable to test it in time for 1.2 release. (Prior to 1.3b4,HAVE_SHMGETwould have sufficed.)

See AlsoStopping and Restarting Apache


ScriptInterpreterSource directive

Syntax: ScriptInterpreterSource registry|script
Default:ScriptInterpreterSource script
Context: directory, .htaccess
Status: core (Windows only)

This directive is used to control how Apache 1.3.5 and later finds the interpreter used to run CGI scripts. The default technique is to use the interpreter pointed to by the #! line in the script. Setting

 

Hi,

 

Thought you may find above info. useful.

 

I can’t do much with it at the mo as I’m using shared computers.

 

P.S. Thanks for pawsing to read  my blog
o,-.___,-.
0\./).”.(\./
ooo(_0_)
oOo/ \/))
00,,(II.II)
oo00.00
Please..\~~~~~~
odrop…..\~~~~~
oOme……\~~~
ooOa……….\`~
oOOoline.O…\~
ooOOosome.o..\
OOooOOtime.o./
ooooOOO0o~~\.o./
oOoOoO~~.~–~/
OOoo~~~\\/”\
OOO~~.o//\__-==
~~~~ooo..//

 

Setting up server

 

<VirtualHost> directive

Syntax: <VirtualHost addr[:port] [addr[:port]] …> … </VirtualHost> 
Context: server config
Status: Core.
Compatibility: Non-IP address-based Virtual Hosting only available in Apache 1.1 and later.
Compatibility: Multiple address support only available in Apache 1.2 and later.

<VirtualHost> and </VirtualHost> are used to enclose a group of directives which will apply only to a particular virtual host. Any directive which is allowed in a virtual host context may be used. When the server receives a request for a document on a particular virtual host, it uses the configuration directives enclosed in the <VirtualHost> section. Addr can be

  • The IP address of the virtual host
  • A fully qualified domain name for the IP address of the virtual host.

Example:

<VirtualHost 10.1.2.3>
ServerAdmin webmaster@host.foo.com
DocumentRoot /www/docs/host.foo.com
ServerName host.foo.com
ErrorLog logs/host.foo.com-error_log
TransferLog logs/host.foo.com-access_log
</VirtualHost>

Each VirtualHost must correspond to a different IP address, different port number or a different host name for the server, in the former case the server machine must be configured to accept IP packets for multiple addresses. (If the machine does not have multiple network interfaces, then this can be accomplished with theifconfig aliascommand (if your OS supports it), or with kernel patches like VIF (for SunOS(TM) 4.1.x)).

You can specify more than one IP address. This is useful if a machine responds to the same name on two different interfaces. For example, if you have a VirtualHost that is available to hosts on an internal (intranet) as well as external (internet) network. Example:

<VirtualHost 192.168.1.2 204.255.176.199>
DocumentRoot /www/docs/host.foo.com
ServerName host.foo.com

Apache HTTP Server Version 1.3

Is this the version you want? For more recent versions, check our documentation index.

Apache Core Features

These configuration parameters control the core Apache features, and are always available.

Directives


AcceptFilter directive

Syntax: AcceptFilter on|off
Default:AcceptFilter on
Context: server config
Status: core
Compatibility: AcceptFilter is available in Apache 1.3.22 and later

AcceptFiltercontrols a BSD specific filter optimization. It is compiled in by default – and switched on by default if your system supports it (setsocketopt() option SO_ACCEPTFILTER). Currently only FreeBSD supports this.

See the filter section on performance hints for more information.

The compile time flagAP_ACCEPTFILTER_OFFcan be used to change the default to ‘off’.httpd -Vandhttpd -Lwill show compile time defaults and whether or not SO_ACCEPTFILTER was defined during the compile.


AcceptMutex directive

Syntax: AcceptMutex uslock|pthread|sysvsem|fcntl|flock|os2sem|tpfcore|none|default
Default:AcceptMutex default
Context: server config
Status: core 
Compatibility: AcceptMutex is available in Apache 1.3.21 and later.

AcceptMutexcontrols which accept() mutex method Apache will use. Not all methods are available on all platforms, since the suite of methods is determined at compile-time. For a list of which methods are available for your particular build, thehttpd -Vcommand line option will list them out.

The compile time flags-D HAVE_METHOD_SERIALIZED_ACCEPTcan be used to add different methods to your build, or one can edit theinclude/ap_config.hfile for your particular platform.

This directive has no effect on Microsoft Windows.

See the performance tuning guide for more information.


AccessConfig directive

Syntax: AccessConfig file-path|directory-path|wildcard-path
Default:AccessConfig conf/access.conf
Context: server config, virtual host
Status: core 
Compatibility: The ability to specify a directory, rather than a file name, is only available in Apache 1.3.13 and later. This directive will be eliminated in version 2.0.

The server will read this file for more directives after reading the ResourceConfig file. File-path is relative to theServerRoot. This feature can be disabled using:

AccessConfig /dev/null

Or, on Win32 servers,

AccessConfig nul

Historically, this file only contained <Directory> sections; in fact it can now contain any server directive allowed in the server config context. However, since Apache version 1.3.4, the defaultaccess.conffile which ships with Apache contains only comments, and all directives are placed in the main server configuration file,httpd.conf.

IfAccessConfigpoints to a directory, rather than a file, Apache will read all files in that directory, and any subdirectory, and parse those as configuration files.

Alternatively you can use a wildcard to limit the scope; i.e to only *.conf files.

Note that by default any file in the specified directory will be loaded as a configuration file.

So make sure that you don’t have stray files in this directory by mistake, such as temporary files created by your editor, for example.

See also: Include and ResourceConfig.


AccessFileName directive

Syntax: AccessFileName filename [filename] ...
Default:AccessFileName .htaccess
Context: server config, virtual host
Status: core
Compatibility: AccessFileName can accept more than one filename only in Apache 1.3 and later

When returning a document to the client the server looks for the first existing access control file from this list of names in every directory of the path to the document, if access control files are enabled for that directory. For example:

AccessFileName .acl

before returning the document /usr/local/web/index.html, the server will read /.acl, /usr/.acl, /usr/local/.acl and /usr/local/web/.acl for directives, unless they have been disabled with

<Directory />
AllowOverride None
</Directory>

See Also: AllowOverride and Configuration Files


AddDefaultCharset directive

Syntax: AddDefaultCharset On|Off|charset
Context: all
Status: core
Default:AddDefaultCharset Off
Compatibility: AddDefaultCharset is only available in Apache 1.3.12 and later

This directive specifies the name of the character set that will be added to any response that does not have any parameter on the content type in the HTTP headers. This will override any character set specified in the body of the document via aMETAtag. A setting ofAddDefaultCharset Offdisables this functionality.AddDefaultCharset Onenables Apache’s internal default charset ofiso-8859-1as required by the directive. You can also specify an alternate charset to be used.

For example:

AddDefaultCharset utf-8

Note: This will not have any effect on the Content-Type and character set for default Apache-generated status pages (such as ‘404 Not Found’ or ‘301 Moved Permanently’) because those have an actual character set (that in which the hard-coded page content is written) and don’t need to have a default applied.


AddModule directive

Syntax: AddModule module [module] ...
Context: server config 
Status: core
Compatibility: AddModule is only available in Apache 1.2 and later

The server can have modules compiled in which are not actively in use. This directive can be used to enable the use of those modules. The server comes with a pre-loaded list of active modules; this list can be cleared with theClearModuleList directive.

For example:

AddModule mod_include.c

The ordering ofAddModulelines is important. Modules are listed in reverse priority order — the ones that come later can override the behavior of those that come earlier. This can have visible effects; for instance, if UserDir followed Alias, you couldn’t alias out a particular user’s home directory. For more information and a recommended ordering, seesrc/Configuration.tmplin the Apache source distribution.

See alsoClearModuleList and LoadModule


AllowOverride directive

Syntax: AllowOverride All|None|directive-type [directive-type] ...
Default:AllowOverride All
Context: directory
Status: core

When the server finds an .htaccess file (as specified by AccessFileName) it needs to know which directives declared in that file can override earlier access information.

Note:AllowOverrideis only valid in <Directory> sections, not in <Location> or <Files> sections, as implied by the Context section above.

When this directive is set toNone, then .htaccess files are completely ignored. In this case, the server will not even attempt to read .htaccess files in the filesystem.

When this directive is set toAll, then any directive which has the .htaccess Context is allowed in .htaccess files.

The directive-type can be one of the following groupings of directives.

AuthConfig

Allow use of the authorization directives (AuthDBMGroupFileAuthDBMUserFileAuthGroupFileAuthName,AuthDigestRealmSeedAuthTypeAuthUserFileRequireetc.).

FileInfo

Allow use of the directives controlling document types (AddEncodingAddLanguageAddTypeDefaultTypeErrorDocument,LanguagePriorityetc.).

Indexes

Allow use of the directives controlling directory indexing (AddDescriptionAddIconAddIconByEncodingAddIconByType,DefaultIconDirectoryIndexFancyIndexingHeaderNameIndexIgnoreIndexOptionsReadmeNameetc.).

Limit

Allow use of the directives controlling host access (AllowDeny and Order).

Options

Allow use of the directives controlling specific directory features (Options and XBitHack).

Example:

AllowOverride AuthConfig Indexes

See Also: AccessFileName and Configuration Files


AuthName directive

Syntax: AuthName auth-domain
Context: directory, .htaccess
Override: AuthConfig
Status: core

This directive sets the name of the authorization realm for a directory. This realm is given to the client so that the user knows which username and password to send. AuthName takes a single argument; if the realm name contains spaces, it must be enclosed in quotation marks. It must be accompanied by AuthType and Require directives, and directives such asAuthUserFile and AuthGroupFile to work.

For example:

AuthName "Top Secret"

The string provided for theAuthNameis what will appear in the password dialog provided by most browsers.

See also: Authentication, Authorization, and Access Control


AuthDigestRealmSeed directive

Syntax: AuthDigestRealmSeed secret-real-string
Context: directory, .htaccess
Override: AuthConfig
Status: core

This directive sets a per realm secret nonce prefix which is used to ensure that a captured username, password and realm string during a Digest exchange cannot be replayed at other places.

It only applies to mod_digest.html, the experimental mod_auth_digest.html implements its own (more advanced and also time sensitive) replay protection.

It must be accompanied by AuthType of type Digest, one or more Require directives, and directives such as AuthUserFileand AuthGroupFile to work.

See also: Authentication, Authorization, and Access Control


AuthType directive

Syntax: AuthType Basic|Digest
Context: directory, .htaccess
Override: AuthConfig
Status: core

This directive selects the type of user authentication for a directory. OnlyBasicandDigestare currently implemented. It must be accompanied by AuthName and Require directives, and directives such asAuthUserFile and AuthGroupFile to work.

When AuthDigest is used an AuthDigestRealmSeed should also be set.

See also: Authentication, Authorization, and Access Control


BindAddress directive

Syntax: BindAddress *|IP-address|domain-name
Default:BindAddress *
Context: server config
Status: core
Compatibility: BindAddress is deprecated and will be eliminated in Apache 2.0.

A Unix® http server can either listen for connections to every IP address of the server machine, or just one IP address of the server machine. If the argument to this directive is *, then the server will listen for connections on every IP address. Otherwise, the server can listen to only a specific IP-address or a fully-qualified Internet domain-name.

For example:

BindAddress 192.168.15.48

Only oneBindAddressdirective can be used.

This directive is deprecated and will be eliminated in Apache 2.0. Equivalent functionality and more control over the address and ports Apache listens to is available using theListendirective.

BindAddresscan be used as an alternative method for supporting virtual hosts using multiple independent servers, instead of using<VirtualHost>sections.

See Also: DNS Issues
See Also: Setting which addresses and ports Apache uses


BS2000Account directive

Syntax: BS2000Account account
Default: none
Context: server config
Status: core
Compatibility: BS2000Account is only available for BS2000 machines, as of Apache 1.3 and later.

TheBS2000Accountdirective is available for BS2000 hosts only. It must be used to define the account number for the non-privileged apache server user (which was configured using the User directive). This is required by the BS2000 POSIX subsystem (to change the underlying BS2000 task environment by performing a sub-LOGON) to prevent CGI scripts from accessing resources of the privileged account which started the server, usually SYSROOT.
Only oneBS2000Accountdirective can be used.

See Also: Apache EBCDIC port


CGICommandArgs directive

Syntax: CGICommandArgs On|Off
Default: CGICommandArgs On
Context: directory, .htaccess
Override: Options
Status: core
Compatibility: Available in Apache 1.3.24 and later.

Way back when the internet was a safer, more naive place, it was convenient for the server to take a query string that did not contain an ‘=’ sign and to parse and pass it to a CGI program as command line args. For example,<IsIndex>generated searches often work in this way. The default behavior in Apache is to maintain this behavior for backwards compatibility, although it is generally regarded as unsafe practice today. Most CGI programs do not take command line parameters, but among those that do, many are unaware of this method of passing arguments and are therefore vulnerable to malicious clients passing unsafe material in this way. SettingCGICommandArgs Offis recommended to protect such scripts with little loss in functionality.


ClearModuleList directive

Syntax: ClearModuleList
Context: server config
Status: core
Compatibility: ClearModuleList is only available in Apache 1.2 and later

The server comes with a built-in list of active modules. This directive clears the list. It is assumed that the list will then be re-populated using the AddModule directive.

See alsoAddModule and LoadModule


ContentDigest directive

Syntax: ContentDigest on|off
Default:ContentDigest off
Context: server config, virtual host, directory, .htaccess
Override: Options
Status: experimental
Compatibility: ContentDigest is only available in Apache 1.1 and later

This directive enables the generation ofContent-MD5headers as defined in RFC1864 respectively RFC2068.

MD5 is an algorithm for computing a “message digest” (sometimes called “fingerprint”) of arbitrary-length data, with a high degree of confidence that any alterations in the data will be reflected in alterations in the message digest.

TheContent-MD5header provides an end-to-end message integrity check (MIC) of the entity-body. A proxy or client may check this header for detecting accidental modification of the entity-body in transit. Example header:

   Content-MD5: AuLb7Dp1rqtRtxz2m9kRpA==  

Note that this can cause performance problems on your server since the message digest is computed on every request (the values are not cached).

Content-MD5is only sent for documents served by the core, and not by any module. For example, SSI documents, output from CGI scripts, and byte range responses do not have this header.


CoreDumpDirectory directive

Syntax: CoreDumpDirectory directory-path
Default: the same location as ServerRoot
Context: server config
Status: core

This controls the directory to which Apache attempts to switch before dumping core. The default is in the ServerRootdirectory, however since this should not be writable by the user the server runs as, core dumps won’t normally get written. If you want a core dump for debugging, you can use this directive to place it in a different location.

For example:

CoreDumpDirectory /tmp


DefaultType directive

Syntax: DefaultType MIME-type
Default:DefaultType text/plain
Context: server config, virtual host, directory, .htaccess
Override: FileInfo
Status: core

There will be times when the server is asked to provide a document whose type cannot be determined by its MIME types mappings.

The server must inform the client of the content-type of the document, so in the event of an unknown type it uses theDefaultType. For example:

DefaultType image/gif

would be appropriate for a directory which contained many gif images with filenames missing the .gif extension.

See also: AddType and TypesConfig.


<Directory> directive

Syntax: <Directory directory-path|proxy:url-path> ... </Directory> 
Context: server config, virtual host
Status: Core.

<Directory> and </Directory> are used to enclose a group of directives which will apply only to the named directory and sub-directories of that directory. Any directive which is allowed in a directory context may be used. Directory-path is either the full path to a directory, or a wild-card string. In a wild-card string, `?’ matches any single character, and `*’ matches any sequences of characters. As of Apache 1.3, you may also use `[ ]’ character ranges like in the shell. Also as of Apache 1.3 none of the wildcards match a `/’ character, which more closely mimics the behavior of Unix shells. Example:

   <Directory /usr/local/httpd/htdocs>     Options Indexes FollowSymLinks     </Directory>  

Apache 1.2 and above: Extended regular expressions can also be used, with the addition of the~character. For example:

   <Directory ~ "^/www/.*/[0-9]{3}">  

would match directories in /www/ that consisted of three numbers.

If multiple (non-regular expression) directory sections match the directory (or its parents) containing a document, then the directives are applied in the order of shortest match first, interspersed with the directives from the .htaccessfiles. For example, with

<Directory />
AllowOverride None
</Directory>

<Directory /home/*>
AllowOverride FileInfo
</Directory>

for access to the document/home/web/dir/doc.htmlthe steps are:

  • Apply directiveAllowOverride None(disabling.htaccessfiles).
  • Apply directiveAllowOverride FileInfo(for directory/home/web).
  • Apply any FileInfo directives in/home/web/.htaccess

Regular expression directory sections are handled slightly differently by Apache 1.2 and 1.3. In Apache 1.2 they are interspersed with the normal directory sections and applied in the order they appear in the configuration file. They are applied only once, and apply when the shortest match possible occurs. In Apache 1.3 regular expressions are not considered until after all of the normal sections have been applied. Then all of the regular expressions are tested in the order they appeared in the configuration file. For example, with

<Directory ~ abc$>
... directives here ...
</Directory>

Suppose that the filename being accessed is/home/abc/public_html/abc/index.html. The server considers each of/,/home,/home/abc,/home/abc/public_html, and/home/abc/public_html/abcin that order. In Apache 1.2, when/home/abcis considered, the regular expression will match and be applied. In Apache 1.3 the regular expression isn't considered at all at that point in the tree. It won't be considered until after all normal <Directory>s and.htaccessfiles have been applied. Then the regular expression will match on/home/abc/public_html/abcand be applied.

Note that the default Apache access for <Directory /> is Allow from All. This means that Apache will serve any file mapped from an URL. It is recommended that you change this with a block such as

 <Directory />       Order Deny,Allow       Deny from All   </Directory>  

and then override this for directories you want accessible. See the Security Tips page for more details.

<Directory> directives cannot nest, and cannot appear in a <Limit> or <LimitExcept> section.

If you have mod_proxy enabled, you can use theproxy:syntax to apply configuration directives to proxied content. The syntax for this is to specify the proxied URLs to which you wish to apply the configuration, or to specify*to apply to all proxied content:

To apply to all proxied content:

   <Directory proxy:*>       ... directives here ...     </Directory>     

To apply to just a subset of proxied content:

   <Directory proxy:http://www.example.com/>       ... directives here ...     </Directory>     

See alsoHow Directory, Location and Files sections work for an explanation of how these different sections are combined when a request is received

See alsoDirectoryMatch


<DirectoryMatch>

Syntax: <DirectoryMatch regex> ... </DirectoryMatch> 
Context: server config, virtual host
Status: Core.
Compatibility: Available in Apache 1.3 and later

<DirectoryMatch> and </DirectoryMatch> are used to enclose a group of directives which will apply only to the named directory and sub-directories of that directory, the same as <Directory>. However, it takes as an argument a regular expression. For example:

   <DirectoryMatch "^/www/.*/[0-9]{3}">  

would match directories in /www/ that consisted of three numbers.

See Also: <Directory> for a description of how regular expressions are mixed in with normal <Directory>s.
See alsoHow Directory, Location and Files sections work for an explanation of how these different sections are combined when a request is received


DocumentRoot directive

Syntax: DocumentRoot directory-path
Default:DocumentRoot /usr/local/apache/htdocs
Context: server config, virtual host
Status: core

This directive sets the directory from which httpd will serve files. Unless matched by a directive like Alias, the server appends the path from the requested URL to the document root to make the path to the document. Example:

DocumentRoot /usr/web

then an access tohttp://www.my.host.com/index.htmlrefers to/usr/web/index.html.

There appears to be a bug in mod_dir which causes problems when the DocumentRoot has a trailing slash (i.e., “DocumentRoot /usr/web/”) so please avoid that.


EBCDICConvert

Syntax: EBCDICConvert On|Off[=direction] extension [extension] ...
Context: server config, virtual host, directory, .htaccess
Status: core
Override: FileInfo
Compatibility: The configurable EBCDIC conversion is only available in Apache 1.3.19 and later, and on EBCDIC based platforms.

The EBCDICConvert directive maps the given filename extensions to the specified conversion setting (On or Off). File extensions may be specified with or without a leading dot.

If the optional format On=direction (or Off=direction) is used, where direction is one of In, Out or InOut, then the directive only applies to the specified transfer direction (In: uploaded content in a PUT or POST request, Out: returned content in a GET or POST request, and InOut: conversion in both directions).
Otherwise, InOut (conversion in both directions) is implied.

Conversion configuration based on file extension is tested prior to configuration based on MIME type, to allow for generic MIME based rules to be overridden by a more specific file extension (several file extensions may exist for the same MIME type).

Example:
With a configuration like the following, the normal *.html files contain HTML text in EBCDIC encoding, while *.ahtmlfiles contain HTML text in ASCII encoding:

    # *.html and *.ahtml contain HTML text:      AddType  text/html  .html .ahtml        # *.ahtml is not converted (contains ASCII text already):      EBCDICConvert       Off .ahtml        # All other text/html files presumably contain EBCDIC text:      EBCDICConvertByType On  text/html  

 

See alsoEBCDICConvertByType and Overview of the EBCDIC Conversion Functions


EBCDICConvertByType

Syntax: EBCDICConvertByType On|Off[=direction] mimetype [mimetype] ...
Context: server config, virtual host, directory, .htaccess
Status: core
Override: FileInfo
Compatibility: The configurable EBCDIC conversion is only available in Apache 1.3.19 and later, and on EBCDIC based platforms.

The EBCDICConvertByType directive maps the given MIME type (optionally containing wildcards) to the specified conversion setting (On or Off).

If the optional format On=direction (or Off=direction) is used, where direction is one of In, Out or InOut, then the directive only applies to the specified transfer direction (In: uploaded content in a PUT or POST request, Out: returned content in a GET or POST request, and InOut: conversion in both directions).
Otherwise, InOut (conversion in both directions) is implied.

Example:
A useful standard configuration should at least contain the following defaults:

    # All text documents are stored as EBCDIC files:      EBCDICConvertByType On  text/* message/* multipart/*      EBCDICConvertByType On  application/x-www-form-urlencoded \                  model/vrml application/postscript      # All other files are assumed to be binary:      EBCDICConvertByType Off */*  

If you serve ASCII documents only, for example from an NFS mounted unix server, use:

    # All documents are ASCII already:      EBCDICConvertByType Off */*  

See alsoEBCDICConvert and Overview of the EBCDIC Conversion Functions


EBCDICKludge

Syntax: EBCDICKludge On|Off
Default:EBCDICKludge Off
Context: server config, virtual host, directory, .htaccess
Status: core
Override: FileInfo
Compatibility: EBCDICKludge is only available in Apache 1.3.19 and later, and on EBCDIC based platforms. It is deprecated and will be withdrawn in a future version.

The EBCDICKludge is provided for the backward compatible behavior with apache versions 1.3.0 through 1.3.18. In these versions, all files with MIME types starting with “text/”, “message/” or “multipart/” or with type “application/x-www-form-urlencoded” would be converted by default, all other documents were returned unconverted. Only if a MIME type “text/x-ascii-subtype” was configured for a certain document, the document was assumed to be in ASCII format already, and was not converted again. Instead, the “x-ascii-” was removed from the type, resulting in the MIME type “text/subtype” being returned for the document.

If the EBCDICKludge directive is set to On, and if none of the file extensions configured with the EBCDICConvertdirective matches in the current context, then the server tests for a MIME type of the format type/x-ascii-subtype. If the document has such a type, then the “x-ascii-” substring is removed and the conversion set to Off. This allows for overriding the implicit assumption that all text files are stored in EBCDIC format, for example when serving documents from an NFS mounted directory with ASCII documents.
By using the EBCDICKludge, there is no way to force one of the other MIME types (e.g., model/vrml) to be treated as an EBCDIC text file. Use of the EBCDICConvertByType directive mentioned above is the preferred way to configure such a conversion. (Before Apache version 1.3.19, there was no way at all to force these binary documents to be treated as EBCDIC text files.)

See alsoEBCDICConvertEBCDICConvertByType and Overview of the EBCDIC Conversion Functions


EnableExceptionHook directive

Syntax: EnableExceptionHook on|off
Default:EnableExceptionHook off
Context: server config
Status: core
Compatibility: EnableExceptionHook is available in Apache 1.3.30 and later

EnableExceptionHookcontrols whether or not an exception hook implemented by a module will be called after a child process crash. The exception hook allows modules to log diagnostic information that may help determine the cause of the crash.


ErrorDocument directive

Syntax: ErrorDocument error-code document
Context: server config, virtual host, directory, .htaccess
Status: core
Override: FileInfo
Compatibility: The directory and .htaccess contexts are only available in Apache 1.1 and later.

In the event of a problem or error, Apache can be configured to do one of four things,

  1. output a simple hardcoded error message
  2. output a customized message
  3. redirect to a local URL-path to handle the problem/error
  4. redirect to an external URL to handle the problem/error

The first option is the default, while options 2-4 are configured using theErrorDocumentdirective, which is followed by the HTTP response code and a message or URL.

Messages in this context begin with a single double-quote character ("), which does not form part of the message itself. Apache will sometimes offer additional information regarding the problem/error.

URLs can begin with a slash (/) for local URLs, or be a full URL which the client can resolve. Examples:

ErrorDocument 500 http://foo.example.com/cgi-bin/tester
ErrorDocument 404 /cgi-bin/bad_urls.pl
ErrorDocument 401 /subscription_info.html
ErrorDocument 403 "Sorry can't allow you access today

Note that when you specify anErrorDocumentthat points to a remote URL (ie. anything with a method such as “http” in front of it), Apache will send a redirect to the client to tell it where to find the document, even if the document ends up being on the same server. This has several implications, the most important being that the client will not receive the original error status code, but instead will receive a redirect status code. This in turn can confuse web robots and other clients which try to determine if a URL is valid using the status code. In addition, if you use a remote URL in anErrorDocument 401, the client will not know to prompt the user for a password since it will not receive the 401 status code. Therefore,if you use an “ErrorDocument 401” directive then it must refer to a local document.

Microsoft Internet Explorer (MSIE) will by default ignore server-generated error messages when they are “too small” and substitute its own “friendly” error messages. The size threshold varies depending on the type of error, but in general, if you make your error document greater than 512 bytes, then MSIE will show the server-generated error rather than masking it. More information is available in Microsoft Knowledgebase article Q294807.

See Also: documentation of customizable responses. See the HTTP specification for a complete list of the status codes and their meanings.


ErrorLog directive

Syntax: ErrorLog file-path|syslog[:facility] 
Default:ErrorLog logs/error_log(Unix)
Default:ErrorLog logs/error.log(Windows and OS/2)
Context: server config, virtual host
Status: core

The error log directive sets the name of the file to which the server will log any errors it encounters. If the file-path does not begin with a slash (/) then it is assumed to be relative to the ServerRoot. If the file-path begins with a pipe (|) then it is assumed to be a command to spawn to handle the error log.

Examples

ErrorLog logs/vhost1.error

or

ErrorLog |/usr/local/bin/errorlog.pl

Apache 1.3 and above: Usingsysloginstead of a filename enables logging via syslogd(8) if the system supports it. The default is to use syslog facilitylocal7, but you can override this by using thesyslog:facility syntax where facility can be one of the names usually documented in syslog(1).

For example:

ErrorLog syslog

or

ErrorLog syslog:user

SECURITY: See the security tips document for details on why your security could be compromised if the directory where logfiles are stored is writable by anyone other than the user that starts the server.

See also: LogLevel and Apache Log Files


FileETag directive

Syntax: FileETag component ...
Context: server config, virtual host, directory, .htaccess
Override: FileInfo
Status: core
Compatibility: only available in Apache 1.3.23 versions and later.

The FileETag directive configures the file attributes that are used to create the ETag (entity tag) response header field when the document is based on a file. (The ETag value is used in cache management to save network bandwidth.) In Apache 1.3.22 and earlier, the ETag value was always formed from the file’s inode, size, and last-modified time (mtime). The FileETag directive allows you to choose which of these — if any — should be used. The recognized keywords are:

INode

The file’s i-node number will be included in the calculation

MTime

The date and time the file was last modified will be included

Size

The number of bytes in the file will be included

All

All available fields will be used (equivalent to ‘FileETag INode MTime Size‘)

None

If a document is file-based, no ETag field will be included in the response

The INode, MTime, and Size keywords may be prefixed with either ‘+’ or ‘-‘, which allow changes to be made to the default setting inherited from a broader scope. Any keyword appearing without such a prefix immediately and completely cancels the inherited setting.

If a directory’s configuration includes ‘FileETag INode MTime Size‘, and a subdirectory’s includes ‘FileETag -INode‘, the setting for that subdirectory (which will be inherited by any sub-subdirectories that don’t override it) will be equivalent to ‘FileETag MTime Size‘.


<Files> directive

Syntax: <Files filename> ... </Files>
Context: server config, virtual host, .htaccess
Status: core
Compatibility: only available in Apache 1.2 and above.

The <Files> directive provides for access control by filename. It is comparable to the <Directory> directive and<Location> directives. It should be matched with a </Files> directive. The directives given within this section will be applied to any object with a basename (last component of filename) matching the specified filename.<Files>sections are processed in the order they appear in the configuration file, after the <Directory> sections and.htaccessfiles are read, but before <Location> sections. Note that <Files> can be nested inside <Directory> sections to restrict the portion of the filesystem they apply to.

The filename argument should include a filename, or a wild-card string, where `?’ matches any single character, and `*’ matches any sequences of characters. Extended regular expressions can also be used, with the addition of the~character. For example:

   <Files ~ "\.(gif|jpe?g|png)$">  

would match most common Internet graphics formats. In Apache 1.3 and later, <FilesMatch> is preferred, however.

Note that unlike<Directory>and<Location>sections,<Files>sections can be used inside .htaccess files. This allows users to control access to their own files, at a file-by-file level. For example, to password protect a single file within a particular directory, you might add the following to your.htaccessfile:

    <Files admin.cgi>      Require group admin     
 </Files>

Remember that directives apply to subdirectories as well, so this will also protect files calledadmin.cgiin subdirectories, unless specifically overridden.

(See Require for details on using theRequiredirective)

See alsoHow Directory, Location and Files sections work for an explanation of how these different sections are combined when a request is received


<FilesMatch>

Syntax: <FilesMatch regex> ... </FilesMatch>
Context: server config, virtual host, .htaccess
Status: core
Compatibility: only available in Apache 1.3 and above.

The <FilesMatch> directive provides for access control by filename, just as the <Files> directive does. However, it accepts a regular expression. For example:

   <FilesMatch "\.(gif|jpe?g|png)$">  

would match most common Internet graphics formats.

See also: How Directory, Location and Files sections work for an explanation of how these different sections are combined when a request is received


Group directive

Syntax: Group unix-group
Default:Group #-1
Context: server config, virtual host
Status: core

The Group directive sets the group under which the server will answer requests. In order to use this directive, the stand-alone server must be run initially as root. Unix-group is one of:

A group name

Refers to the given group by name.

# followed by a group number.

Refers to a group by its number.

It is recommended that you set up a new group specifically for running the server. Some admins use usernobody, but this is not always possible or desirable.

Example:

Group www-group

Note: if you start the server as a non-root user, it will fail to change to the specified group, and will instead continue to run as the group of the original user.

Special note: Use of this directive in <VirtualHost> requires a properly configured suEXEC wrapper. When used inside a <VirtualHost> in this manner, only the group that CGIs are run as is affected. Non-CGI requests are still processed as the group specified in the main Group directive.

SECURITY: See User for a discussion of the security considerations.


HostnameLookups directive

Syntax: HostnameLookups on|off|double
Default:HostnameLookups off
Context: server config, virtual host, directory
Status: core
Compatibility:doubleavailable only in Apache 1.3 and above.
Compatibility: Default wasonprior to Apache 1.3.

This directive enables DNS lookups so that host names can be logged (and passed to CGIs/SSIs inREMOTE_HOST). The valuedoublerefers to doing double-reverse DNS. That is, after a reverse lookup is performed, a forward lookup is then performed on that result. At least one of the ip addresses in the forward lookup must match the original address. (In “tcpwrappers” terminology this is calledPARANOID.)

Regardless of the setting, when mod_access is used for controlling access by hostname, a double reverse lookup will be performed. This is necessary for security. Note that the result of this double-reverse isn’t generally available unless you setHostnameLookups double. For example, if onlyHostnameLookups onand a request is made to an object that is protected by hostname restrictions, regardless of whether the double-reverse fails or not, CGIs will still be passed the single-reverse result inREMOTE_HOST.

The default for this directive was previouslyonin versions of Apache prior to 1.3. It was changed tooffin order to save the network traffic for those sites that don’t truly need the reverse lookups done. It is also better for the end users because they don’t have to suffer the extra latency that a lookup entails. Heavily loaded sites should leave this directiveoff, since DNS lookups can take considerable amounts of time. The utility logresolve, provided in the /support directory, can be used to look up host names from logged IP addresses offline.


IdentityCheck directive

Syntax: IdentityCheck on|off
Default:IdentityCheck off
Context: server config, virtual host, directory
Status: core

This directive enables RFC1413-compliant logging of the remote user name for each connection, where the client machine runs identd or something similar. This information is logged in the access log.

The information should not be trusted in any way except for rudimentary usage tracking.

Note that this can cause serious latency problems accessing your server since every request requires one of these lookups to be performed. When firewalls are involved each lookup might possibly fail and add 30 seconds of latency to each hit. So in general this is not very useful on public servers accessible from the Internet.


<IfDefine> directive

Syntax: <IfDefine [!]parameter-name>  </IfDefine>
Default: None
Context: all
Status: Core
Compatibility: <IfDefine> is only available in 1.3.1 and later.

The <IfDefine test>…</IfDefine> section is used to mark directives that are conditional. The directives within an IfDefine section are only processed if the test is true. If test is false, everything between the start and end markers is ignored.

The test in the <IfDefine> section directive can be one of two forms:

  • parameter-name
  • !parameter-name

In the former case, the directives between the start and end markers are only processed if the parameter namedparameter-name is defined. The second format reverses the test, and only processes the directives if parameter-name isnot defined.

The parameter-name argument is a define as given on thehttpdcommand line via-Dparameter-, at the time the server was started.

<IfDefine> sections are nest-able, which can be used to implement simple multiple-parameter tests. Example:

  $ httpd -DReverseProxy ...      # httpd.conf    <IfDefine ReverseProxy>    LoadModule rewrite_module
 libexec/mod_rewrite.so    LoadModule proxy_module   libexec/libproxy.so    </IfDefine>  

<IfModule> directive

Syntax: <IfModule [!]module-name>  </IfModule>
Default: None
Context: all
Status: Core
Compatibility: IfModule is only available in 1.2 and later.

The <IfModule test>…</IfModule> section is used to mark directives that are conditional. The directives within an IfModule section are only processed if the test is true. If test is false, everything between the start and end markers is ignored.

The test in the <IfModule> section directive can be one of two forms:

  • module name
  • !module name

In the former case, the directives between the start and end markers are only processed if the module named module nameis included in Apache — either compiled in or dynamically loaded using LoadModule. The second format reverses the test, and only processes the directives if module name is not included.

The module name argument is the file name of the module, at the time it was compiled. For example,mod_rewrite.c.

<IfModule> sections are nest-able, which can be used to implement simple multiple-module tests.


Include directive

Syntax: Include file-path|directory-path|wildcard-path
Context: server config
Status: Core
Compatibility: Include is only available in Apache 1.3 and later. Wildcards were introduced in version 1.3.27.

This directive allows inclusion of other configuration files from within the server configuration files.

The file path specified may be a fully qualified path (i.e. starting with a slash), or may be relative to theServerRootdirectory.

New in Apache 1.3.13 is the feature that ifIncludepoints to a directory, rather than a file, Apache will read all files in that directory, and any subdirectory, and parse those as configuration files.

By using a wildcard this can be further limited to, say, just the ‘*.conf’ files.

Examples:

Include /usr/local/apache/conf/ssl.conf
Include /usr/local/apache/conf/vhosts/

Or, providing paths relative to yourServerRootdirectory:

Include conf/ssl.conf
Include conf/vhosts/

Make sure that an included directory does not contain any stray files, such as editor temporary files, for example, as Apache will attempt to read them in and use the contents as configuration directives, which may cause the server to fail on start up. Runningapachectl configtestwill give you a list of the files that are being processed during the configuration check:

root@host# apachectl configtest   Processing config directory: /usr/local/apache/conf/vhosts   Processing config file: /usr/local/apache/conf/vhosts/vhost1   Processing config file: /usr/local/apache/conf/vhosts/vhost2  Syntax OK  

This will help in verifying that you are getting only the files that you intended as part of your configuration.

See alsoapachectl


KeepAlive directive

Syntax: (Apache 1.1) KeepAlive max-requests
Default: (Apache 1.1)KeepAlive 5
Syntax: (Apache 1.2) KeepAlive on|off
Default: (Apache 1.2)KeepAlive On
Context: server config
Status: Core
Compatibility: KeepAlive is only available in Apache 1.1 and later.

The Keep-Alive extension to HTTP/1.0 and the persistent connection feature of HTTP/1.1 provide long-lived HTTP sessions which allow multiple requests to be sent over the same TCP connection. In some cases this has been shown to result in an almost 50% speedup in latency times for HTML documents with many images. To enable Keep-Alive connections in Apache 1.2 and later, setKeepAlive On.

For HTTP/1.0 clients, Keep-Alive connections will only be used if they are specifically requested by a client. In addition, a Keep-Alive connection with an HTTP/1.0 client can only be used when the length of the content is known in advance. This implies that dynamic content such as CGI output, SSI pages, and server-generated directory listings will generally not use Keep-Alive connections to HTTP/1.0 clients. For HTTP/1.1 clients, persistent connections are the default unless otherwise specified. If the client requests it, chunked encoding will be used in order to send content of unknown length over persistent connections.

Apache 1.1 only: Set max-requests to the maximum number of requests you want Apache to entertain per connection. A limit is imposed to prevent a client from hogging your server resources. Set this to0to disable support. In Apache 1.2 and 1.3, this is controlled through the MaxKeepAliveRequests directive instead.

See also MaxKeepAliveRequests.


KeepAliveTimeout directive

Syntax: KeepAliveTimeout seconds
Default:KeepAliveTimeout 15
Context: server config
Status: Core
Compatibility: KeepAliveTimeout is only available in Apache 1.1 and later.

The number of seconds Apache will wait for a subsequent request before closing the connection. Once a request has been received, the timeout value specified by theTimeoutdirective applies.

SettingKeepAliveTimeoutto a high value may cause performance problems in heavily loaded servers. The higher the timeout, the more server processes will be kept occupied waiting on connections with idle clients.


<Limit> directive

Syntax: <Limit method [method] ... > ... </Limit>
Context: any
Status: core

Access controls are normally effective for all access methods, and this is the usual desired behavior. In the general case, access control directives should not be placed within a<limit>section.

The purpose of the <Limit> directive is to restrict the effect of the access controls to the nominated HTTP methods. For all other methods, the access restrictions that are enclosed in the <Limit> bracket will have no effect. The following example applies the access control only to the methods POST, PUT, and DELETE, leaving all other methods unprotected:

<Limit POST PUT DELETE>
Require valid-user
</Limit>

The method names listed can be one or more of: GET, POST, PUT, DELETE, CONNECT, OPTIONS, PATCH, PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, and UNLOCK. The method name is case-sensitive. If GET is used it will also restrict HEAD requests. The TRACE method cannot be limited.

Warning: A <LimitExcept> section should always be used in preference to a <Limit> section when restricting access, since a <LimitExcept> section provides protection against arbitrary methods.


<LimitExcept> directive

Syntax: <LimitExcept method [method] ... > ... </LimitExcept>
Context: any
Status: core
Compatibility: Available in Apache 1.3.5 and later

<LimitExcept> and </LimitExcept> are used to enclose a group of access control directives which will then apply to any HTTP access method not listed in the arguments; i.e., it is the opposite of a <Limit> section and can be used to control both standard and nonstandard/unrecognized methods. See the documentation for <Limit> for more details.

For example:

    <LimitExcept POST GET>      Require valid-user      </LimitExcept>      

LimitInternalRecursion directive

Syntax: LimitInternalRecursion number [number]
Default:LimitInternalRecursion 20
Context: server config, virtual host
Status: core
Compatibility: LimitInternalRecursion is only available in Apache 1.3.28 and later.

An internal redirect happens, for example, when using the Action directive, which internally redirects the original request to a CGI script. A subrequest is Apache’s mechanism to find out what would happen for some URI if it were requested. For example, mod_dir uses subrequests to look for the files listed in the DirectoryIndex directive.

LimitInternalRecursionprevents the server from crashing when entering an infinite loop of internal redirects or subrequests. Such loops are usually caused by misconfigurations.

The directive stores two different limits, which are evaluated on per-request basis. The first number is the maximum number of internal redirects, that may follow each other. The second number determines, how deep subrequests may be nested. If you specify only one number, it will be assigned to both limits. A value of0means “unlimited”.

Example

    LimitInternalRecursion 5      

LimitRequestBody directive

Syntax: LimitRequestBody bytes
Default:LimitRequestBody 0
Context: server config, virtual host, directory, .htaccess
Status: core
Compatibility: LimitRequestBody is only available in Apache 1.3.2 and later.

This directive specifies the number of bytes from 0 (meaning unlimited) to 2147483647 (2GB) that are allowed in a request body.

The LimitRequestBody directive allows the user to set a limit on the allowed size of an HTTP request message body within the context in which the directive is given (server, per-directory, per-file or per-location). If the client request exceeds that limit, the server will return an error response instead of servicing the request. The size of a normal request message body will vary greatly depending on the nature of the resource and the methods allowed on that resource. CGI scripts typically use the message body for passing form information to the server. Implementations of the PUT method will require a value at least as large as any representation that the server wishes to accept for that resource.

This directive gives the server administrator greater control over abnormal client request behavior, which may be useful for avoiding some forms of denial-of-service attacks.

If, for example, you are permitting file upload to a particular location, and wich to limit the size of the uploaded file to 100K, you might use the following directive:

LimitRequestBody 102400

LimitRequestFields directive

Syntax: LimitRequestFields number
Default:LimitRequestFields 100
Context: server config
Status: core
Compatibility: LimitRequestFields is only available in Apache 1.3.2 and later.

Number is an integer from 0 (meaning unlimited) to 32767. The default value is defined by the compile-time constantDEFAULT_LIMIT_REQUEST_FIELDS(100 as distributed).

The LimitRequestFields directive allows the server administrator to modify the limit on the number of request header fields allowed in an HTTP request. A server needs this value to be larger than the number of fields that a normal client request might include. The number of request header fields used by a client rarely exceeds 20, but this may vary among different client implementations, often depending upon the extent to which a user has configured their browser to support detailed content negotiation. Optional HTTP extensions are often expressed using request header fields.

This directive gives the server administrator greater control over abnormal client request behavior, which may be useful for avoiding some forms of denial-of-service attacks. The value should be increased if normal clients see an error response from the server that indicates too many fields were sent in the request.

For example:

LimitRequestFields 50

LimitRequestFieldsize directive

Syntax: LimitRequestFieldsize bytes
Default:LimitRequestFieldsize 8190
Context: server config
Status: core
Compatibility: LimitRequestFieldsize is only available in Apache 1.3.2 and later.

This directive specifies the number of bytes from 0 to the value of the compile-time constantDEFAULT_LIMIT_REQUEST_FIELDSIZE(8190 as distributed) that will be allowed in an HTTP request header.

The LimitRequestFieldsize directive allows the server administrator to reduce the limit on the allowed size of an HTTP request header field below the normal input buffer size compiled with the server. A server needs this value to be large enough to hold any one header field from a normal client request. The size of a normal request header field will vary greatly among different client implementations, often depending upon the extent to which a user has configured their browser to support detailed content negotiation.

This directive gives the server administrator greater control over abnormal client request behavior, which may be useful for avoiding some forms of denial-of-service attacks.

For example:

LimitRequestFieldSize
 16380

Under normal conditions, the value should not be changed from the default.


LimitRequestLine directive

Syntax: LimitRequestLine bytes
Default:LimitRequestLine 8190
Context: server config
Status: core
Compatibility: LimitRequestLine is only available in Apache 1.3.2 and later.

This directive sets the number of bytes from 0 to the value of the compile-time constantDEFAULT_LIMIT_REQUEST_LINE(8190 as distributed) that will be allowed on the HTTP request-line.

The LimitRequestLine directive allows the server administrator to reduce the limit on the allowed size of a client’s HTTP request-line below the normal input buffer size compiled with the server. Since the request-line consists of the HTTP method, URI, and protocol version, the LimitRequestLine directive places a restriction on the length of a request-URI allowed for a request on the server. A server needs this value to be large enough to hold any of its resource names, including any information that might be passed in the query part of a GET request.

This directive gives the server administrator greater control over abnormal client request behavior, which may be useful for avoiding some forms of denial-of-service attacks.

For example:

LimitRequestLine 16380

Under normal conditions, the value should not be changed from the default.


Listen directive

Syntax: Listen [IP-address:]port
Context: server config
Status: core
Compatibility: Listen is only available in Apache 1.1 and later.

The Listen directive instructs Apache to listen to more than one IP address or port; by default it responds to requests on all IP interfaces, but only on the port given by thePortdirective.

Listen can be used instead of BindAddress and Port. It tells the server to accept incoming requests on the specified port or address-and-port combination. If the first format is used, with a port number only, the server listens to the given port on all interfaces, instead of the port given by the Port directive. If an IP address is given as well as a port, the server will listen on the given port and interface.

Note that you may still require a Port directive so that URLs that Apache generates that point to your server still work.

Multiple Listen directives may be used to specify a number of addresses and ports to listen to. The server will respond to requests from any of the listed addresses and ports.

For example, to make the server accept connections on both port 80 and port 8000, use:

   Listen 80   
  Listen 8000  

To make the server accept connections on two specified interfaces and port numbers, use

   Listen 192.170.2.1:80     Listen 192.170.2.5:8000  

See Also: DNS Issues
See Also: Setting which addresses and ports Apache uses
See Also: Known Bugs


ListenBacklog directive

Syntax: ListenBacklog backlog
Default:ListenBacklog 511
Context: server config
Status: Core
Compatibility: ListenBacklog is only available in Apache versions after 1.2.0.

The maximum length of the queue of pending connections. Generally no tuning is needed or desired, however on some systems it is desirable to increase this when under a TCP SYN flood attack. See the backlog parameter to thelisten(2)system call.

This will often be limited to a smaller number by the operating system. This varies from OS to OS. Also note that many OSes do not use exactly what is specified as the backlog, but use a number based on (but normally larger than) what is set.


<Location> directive

Syntax: <Location URL-path|URL> ... </Location>
Context: server config, virtual host
Status: core
Compatibility: Location is only available in Apache 1.1 and later.

The <Location> directive provides for access control by URL. It is similar to the <Directory> directive, and starts a subsection which is terminated with a </Location> directive.<Location>sections are processed in the order they appear in the configuration file, after the <Directory> sections and.htaccessfiles are read, and after the <Files> sections.

Note that URLs do not have to line up with the filesystem at all, it should be emphasized that <Location> operates completely outside the filesystem.

For all origin (non-proxy) requests, the URL to be matched is of the form/path/, and you should not include anyhttp://servernameprefix. For proxy requests, the URL to be matched is of the formscheme://servername/path, and you must include the prefix.

The URL may use wildcards In a wild-card string, `?’ matches any single character, and `*’ matches any sequences of characters.

Apache 1.2 and above: Extended regular expressions can also be used, with the addition of the~character. For example:

   <Location ~ "/(extra|special)/data">  

would match URLs that contained the substring “/extra/data” or “/special/data”. In Apache 1.3 and above, a new directive<LocationMatch> exists which behaves identical to the regex version of<Location>.

TheLocationfunctionality is especially useful when combined with theSetHandlerdirective. For example, to enable status requests, but allow them only from browsers at foo.com, you might use:

    <Location /status>      SetHandler server-status      Order Deny,Allow      Deny from all      Allow from .foo.com      </Location>  

Apache 1.3 and above note about / (slash): The slash character has special meaning depending on where in a URL it appears. People may be used to its behavior in the filesystem where multiple adjacent slashes are frequently collapsed to a single slash (i.e.,/home///foois the same as/home/foo). In URL-space this is not necessarily true. The<LocationMatch>directive and the regex version of<Location>require you to explicitly specify multiple slashes if that is your intention. For example,<LocationMatch ^/abc>would match the request URL/abcbut not the request URL//abc. The (non-regex)<Location>directive behaves similarly when used for proxy requests. But when (non-regex)<Location>is used for non-proxy requests it will implicitly match multiple slashes with a single slash. For example, if you specify<Location /abc/def>and the request is to/abc//defthen it will match.

See alsoHow Directory, Location and Files sections work for an explanation of how these different sections are combined when a request is received


<LocationMatch>

Syntax: <LocationMatch regex> ... </LocationMatch>
Context: server config, virtual host
Status: core
Compatibility: LocationMatch is only available in Apache 1.3 and later.

The <LocationMatch> directive provides for access control by URL, in an identical manner to <Location>. However, it takes a regular expression as an argument instead of a simple string. For example:

   <LocationMatch "/(extra|special)/data">  

would match URLs that contained the substring “/extra/data” or “/special/data”.

See also: How Directory, Location and Files sections work for an explanation of how these different sections are combined when a request is received


LockFile directive

Syntax: LockFile file-path
Default:LockFile logs/accept.lock
Context: server config
Status: core

The LockFile directive sets the path to the lockfile used when Apache is compiled with either USE_FCNTL_SERIALIZED_ACCEPT or USE_FLOCK_SERIALIZED_ACCEPT. This directive should normally be left at its default value. The main reason for changing it is if thelogsdirectory is NFS mounted, since the lockfile must be stored on a local disk. The PID of the main server process is automatically appended to the filename.

SECURITY: It is best to avoid putting this file in a world writable directory such as/var/tmpbecause someone could create a denial of service attack and prevent the server from starting by creating a lockfile with the same name as the one the server will try to create.


LogLevel directive

Syntax: LogLevel level
Default:LogLevel warn
Context: server config, virtual host
Status: core
Compatibility: LogLevel is only available in 1.3 or later.

LogLevel adjusts the verbosity of the messages recorded in the error logs (see ErrorLog directive). The following levels are available, in order of decreasing significance:

Level

Description

Example

emerg

Emergencies – system is unusable.

“Child cannot open lock file. Exiting”

alert

Action must be taken immediately.

“getpwuid: couldn’t determine user name from uid”

crit

Critical Conditions.

“socket: Failed to get a socket, exiting child”

error

Error conditions.

“Premature end of script headers”

warn

Warning conditions.

“child process 1234 did not exit, sending another SIGHUP”

notice

Normal but significant condition.

“httpd: caught SIGBUS, attempting to dump core in …”

info

Informational.

“Server seems busy, (you may need to increase StartServers, or Min/MaxSpareServers)…”

debug

Debug-level messages

“Opening config file …”

When a particular level is specified, messages from all other levels of higher significance will be reported as well.E.g., whenLogLevel infois specified, then messages with log levels ofnoticeandwarnwill also be posted.

Using a level of at leastcritis recommended.

For example:

LogLevel notice

NOTE: When logging to a regular file messages of the levelnoticecannot be suppressed and thus are always logged. However, this doesn’t apply when logging is done usingsyslog.


MaxClients directive

Syntax: MaxClients number
Default:MaxClients 256
Context: server config
Status: core

The MaxClients directive sets the limit on the number of simultaneous requests that can be supported; not more than this number of child server processes will be created. To configure more than 256 clients, you must edit the HARD_SERVER_LIMIT entry in httpd.h and recompile.

Any connection attempts over the MaxClients limit will normally be queued, up to a number based on the ListenBacklogdirective. Once a child process is freed at the end of a different request, the connection will then be serviced.


MaxKeepAliveRequests directive

Syntax: MaxKeepAliveRequests number
Default:MaxKeepAliveRequests 100
Context: server config
Status: core
Compatibility: Only available in Apache 1.2 and later.

The MaxKeepAliveRequests directive limits the number of requests allowed per connection when KeepAlive is on. If it is set to “0“, unlimited requests will be allowed. We recommend that this setting be kept to a high value for maximum server performance. In Apache 1.1, this is controlled through an option to the KeepAlive directive.

For example

MaxKeepAliveRequests 500

MaxRequestsPerChild directive

Syntax: MaxRequestsPerChild number
Default:MaxRequestsPerChild 0
Context: server config
Status: core

The MaxRequestsPerChild directive sets the limit on the number of requests that an individual child server process will handle. After MaxRequestsPerChild requests, the child process will die. If MaxRequestsPerChild is 0, then the process will never expire.

Setting MaxRequestsPerChild to a non-zero limit has two beneficial effects:

  • it limits the amount of memory that process can consume by (accidental) memory leakage;
  • by giving processes a finite lifetime, it helps reduce the number of processes when the server load reduces.

However, on Win32, It is recommended that this be set to 0. If it is set to a non-zero value, when the request count is reached, the child process exits, and is respawned, at which time it re-reads the configuration files. This can lead to unexpected behavior if you have modified a configuration file, but are not expecting the changes to be applied yet. See also ThreadsPerChild.

NOTE: For KeepAlive requests, only the first request is counted towards this limit. In effect, it changes the behavior to limit the number of connections per child.


MaxSpareServers directive

Syntax: MaxSpareServers number
Default:MaxSpareServers 10
Context: server config
Status: core

The MaxSpareServers directive sets the desired maximum number of idle child server processes. An idle process is one which is not handling a request. If there are more than MaxSpareServers idle, then the parent process will kill off the excess processes.

Tuning of this parameter should only be necessary on very busy sites. Setting this parameter to a large number is almost always a bad idea.

Note that this is the maximum number of spare servers, not the maximum total number of client requests that can be handled at one time. If you wish to limit that number, see the MaxClients directive.

This directive has no effect when used with the Apache Web server on a Microsoft Windows platform.

See also MinSpareServersStartServers, and MaxClients.


MinSpareServers directive

Syntax: MinSpareServers number
Default:MinSpareServers 5
Context: server config
Status: core

The MinSpareServers directive sets the desired minimum number of idle child server processes. An idle process is one which is not handling a request. If there are fewer than MinSpareServers idle, then the parent process creates new children at a maximum rate of 1 per second.

Tuning of this parameter should only be necessary on very busy sites. Setting this parameter to a large number is almost always a bad idea.

Note that setting this directive to some value m ensures that you will always have at least n + mhttpdprocesses running when you have n active client requests.

This directive has no effect on Microsoft Windows.

See also MaxSpareServersStartServers, and MaxClients.


NameVirtualHost directive

Syntax: NameVirtualHost addr[:port]
Context: server config
Status: core
Compatibility: NameVirtualHost is only available in Apache 1.3 and later

The NameVirtualHost directive is a required directive if you want to configure name-based virtual hosts.

Although addr can be hostname it is recommended that you always use an IP address or wildcard, e.g.

NameVirtualHost 111.22.33.44

With the NameVirtualHost directive you specify the IP address on which the server will receive requests for the name-based virtual hosts. This will usually be the address to which your name-based virtual host names resolve. In cases where a firewall or other proxy receives the requests and forwards them on a different IP address to the server, you must specify the IP address of the physical interface on the machine which will be servicing the requests. If you have multiple name-based hosts on multiple addresses, repeat the directive for each address.

Note: the “main server” and any _default_ servers will never be served for a request to a NameVirtualHost IP Address (unless for some reason you specify NameVirtualHost but then don’t define any VirtualHosts for that address).

Optionally you can specify a port number on which the name-based virtual hosts should be used, e.g.

NameVirtualHost 111.22.33.44:8080

In Apache 1.3.13 and greater you can specify a*for the addr. This creates a wildcard NameVirtualHost which will match connections to any address that isn't configured with a more specific NameVirtualHost directive or <VirtualHost> section. This is useful if you want only name-based virtual hosts and you don't want to hard-code the server's IP address into the configuration file.

See also: Apache Virtual Host documentation


Options directive

Syntax: Options [+|-]option [[+|-]option] ...
Context: server config, virtual host, directory, .htaccess
Override: Options
Status: core

The Options directive controls which server features are available in a particular directory.

option can be set toNone, in which case none of the extra features are enabled, or one or more of the following:

All

All options except for MultiViews. This is the default setting.

ExecCGI

Execution of CGI scripts is permitted.

FollowSymLinks

The server will follow symbolic links in this directory.
Note: even though the server follows the symlink it does not change the pathname used to match against<Directory>sections.
Note: this option gets ignored if set inside a <Location> section.

Includes

Server-side includes are permitted.

IncludesNOEXEC

Server-side includes are permitted, but the #exec command and #exec CGI are disabled. It is still possible to #include virtual CGI scripts from ScriptAliase’d directories.

Indexes

If a URL which maps to a directory is requested, and the there is no DirectoryIndex (e.g., index.html) in that directory, then the server will return a formatted listing of the directory.

MultiViews

Content negotiated MultiViews are allowed.

SymLinksIfOwnerMatch

The server will only follow symbolic links for which the target file or directory is owned by the same user id as the link.
Note: this option gets ignored if set inside a <Location> section.

Normally, if multipleOptionscould apply to a directory, then the most specific one is taken complete; the options are not merged. However if all the options on theOptionsdirective are preceded by a + or - symbol, the options are merged. Any options preceded by a + are added to the options currently in force, and any options preceded by a - are removed from the options currently in force.

For example, without any + and – symbols:

<Directory /web/docs>
Options Indexes FollowSymLinks
</Directory>
<Directory /web/docs/spec>
Options Includes
</Directory>

then onlyIncludeswill be set for the /web/docs/spec directory. However if the secondOptionsdirective uses the + and - symbols:

<Directory /web/docs>
Options Indexes FollowSymLinks
</Directory>
<Directory /web/docs/spec>
Options +Includes -Indexes
</Directory>

then the optionsFollowSymLinksandIncludesare set for the /web/docs/spec directory.

Note: Using-IncludesNOEXECor-Includesdisables server-side includes completely regardless of the previous setting.

The default in the absence of any other settings isAll.


PidFile directive

Syntax: PidFile file-path
Default:PidFile logs/httpd.pid
Context: server config
Status: core

The PidFile directive sets the file to which the server records the process id of the daemon. If the filename does not begin with a slash (/) then it is assumed to be relative to the ServerRoot. The PidFile is only used in standalone mode.

It is often useful to be able to send the server a signal, so that it closes and then reopens its ErrorLog and TransferLog, and re-reads its configuration files. This is done by sending a SIGHUP (kill -1) signal to the process id listed in the PidFile.

The PidFile is subject to the same warnings about log file placement and security.


Port directive

Syntax: Port number
Default:Port 80
Context: server config
Status: core

Number is a number from 0 to 65535; some port numbers (especially below 1024) are reserved for particular protocols. See/etc/servicesfor a list of some defined ports; the standard port for the http protocol is 80.

The Port directive has two behaviors, the first of which is necessary for NCSA backwards compatibility (and which is confusing in the context of Apache).

  • In the absence of any Listen or BindAddress directives specifying a port number, a Port directive given in the “main server” (i.e., outside any <VirtualHost> section) sets the network port on which the server listens. If there are any Listen or BindAddress directives specifying:numberthen Port has no effect on what address the server listens at.
  • The Port directive sets theSERVER_PORTenvironment variable (for CGI and SSI), and is used when the server must generate a URL that refers to itself (for example when creating an external redirect to itself). This behavior is modified by UseCanonicalName.

The primary behavior of Port should be considered to be similar to that of the ServerName directive. The ServerName and Port together specify what you consider to be the canonical address of the server. (See also UseCanonicalName.)

Port 80 is one of Unix’s special ports. All ports numbered below 1024 are reserved for system use, i.e., regular (non-root) users cannot make use of them; instead they can only use higher port numbers. To use port 80, you must start the server from the root account. After binding to the port and before accepting requests, Apache will change to a low privileged user as set by the User directive.

If you cannot use port 80, choose any other unused port. Non-root users will have to choose a port number higher than 1023, such as 8000.

SECURITY: if you do start the server as root, be sure not to set User to root. If you run the server as root whilst handling connections, your site may be open to a major security attack.


ProtocolReqCheck directive

Syntax: ProtocolReqCheck on|off
Default:ProtocolReqCheck on
Context: server config 
Status: core
Compatibility: ProtocolReqCheck is only available in Apache 1.3.27 and later.

This directive enables strict checking of the Protocol field in the Request line. Versions of Apache prior to 1.3.26 would silently accept bogus Protocols (such asHTTP-1.1) and assumeHTTP/1.0. Instead, now the Protocol field must be valid. If the pre-1.3.26 behavior is desired or required, it can be enabled via settingProtocolReqCheck off.


Require directive

Syntax: Require entity-name [entity-name] ...
Context: directory, .htaccess
Override: AuthConfig
Status: core

This directive selects which authenticated users can access a resource. The allowed syntaxes are:

  • Require user userid [userid] …

Only the named users can access the resource.

  • Require group group-name [group-name] …

Only users in the named groups can access the resource.

  • Require valid-user

All valid users can access the resource.

  • file-owner

Only the user, whose name matches the system’s name for the file owner, can access the resource.
[Available after Apache 1.3.20]

  • file-group

Only the members of the group, whose name matches the system’s name of the file owner group, can access the resource.
[Available after Apache 1.3.20]

Require must be accompanied by AuthName and AuthType directives, and directives such as AuthUserFile and AuthGroupFile(to define users and groups) in order to work correctly. Example:

AuthType Basic
AuthName "Restricted Directory"
AuthUserFile /web/users
AuthGroupFile /web/groups
Require group admin

Access controls which are applied in this way are effective for all methods. This is what is normally desired. If you wish to apply access controls only to specific methods, while leaving other methods unprotected, then place theRequirestatement into a <Limit> section

See also Satisfy and mod_access.


ResourceConfig directive

Syntax: ResourceConfig file-path|directory-path|wildcard-path
Default:ResourceConfig conf/srm.conf
Context: server config, virtual host
Status: core 
Compatibility: The ability to specify a directory, rather than a file name, is only available in Apache 1.3.13 and later.

The server will read this file for more directives after reading the httpd.conf file. File-path is relative to theServerRoot. This feature can be disabled using:

ResourceConfig /dev/null

Or, on Win32 servers,

ResourceConfig nul

Historically, this file contained most directives except for server configuration directives and <Directory> sections; in fact it can now contain any server directive allowed in the server config context. However, since Apache version 1.3.4, the defaultsrm.conffile which ships with Apache contains only comments, and all directives are placed in the main server configuration file,httpd.conf.

IfResourceConfigpoints to a directory, rather than a file, Apache will read all files in that directory, and any subdirectory, and parse those as configuration files.

Alternatively you can use a wildcard to limit the scope; i.e to only *.conf files.

Note that by default any file in the specified directory will be loaded as a configuration file.

So make sure that you don’t have stray files in this directory by mistake, such as temporary files created by your editor, for example.

See also AccessConfig.


RLimitCPU directive

Syntax: RLimitCPU number|max [number|max] 
Default: Unset; uses operating system defaults 
Context: server config, virtual host
Status: core
Compatibility: RLimitCPU is only available in Apache 1.2 and later

Takes 1 or 2 parameters. The first parameter sets the soft resource limit for all processes and the second parameter sets the maximum resource limit. Either parameter can be a number, ormaxto indicate to the server that the limit should be set to the maximum allowed by the operating system configuration. Raising the maximum resource limit requires that the server is running as root, or in the initial startup phase.

This applies to processes forked off from Apache children servicing requests, not the Apache children themselves. This includes CGI scripts and SSI exec commands, but not any processes forked off from the Apache parent such as piped logs.

CPU resource limits are expressed in seconds per process.

See also RLimitMEM or RLimitNPROC.


RLimitMEM directive

Syntax: RLimitMEM number|max [number|max]
Default: Unset; uses operating system defaults 
Context: server config, virtual host
Status: core
Compatibility: RLimitMEM is only available in Apache 1.2 and later

Takes 1 or 2 parameters. The first parameter sets the soft resource limit for all processes and the second parameter sets the maximum resource limit. Either parameter can be a number, ormaxto indicate to the server that the limit should be set to the maximum allowed by the operating system configuration. Raising the maximum resource limit requires that the server is running as root, or in the initial startup phase.

This applies to processes forked off from Apache children servicing requests, not the Apache children themselves. This includes CGI scripts and SSI exec commands, but not any processes forked off from the Apache parent such as piped logs.

Memory resource limits are expressed in bytes per process.

See also RLimitCPU or RLimitNPROC.


RLimitNPROC directive

Syntax: RLimitNPROC number|max [number|max]
Default: Unset; uses operating system defaults 
Context: server config, virtual host
Status: core
Compatibility: RLimitNPROC is only available in Apache 1.2 and later

Takes 1 or 2 parameters. The first parameter sets the soft resource limit for all processes and the second parameter sets the maximum resource limit. Either parameter can be a number, ormaxto indicate to the server that the limit should be set to the maximum allowed by the operating system configuration. Raising the maximum resource limit requires that the server is running as root, or in the initial startup phase.

This applies to processes forked off from Apache children servicing requests, not the Apache children themselves. This includes CGI scripts and SSI exec commands, but not any processes forked off from the Apache parent such as piped logs.

Process limits control the number of processes per user.

Note: If CGI processes are not running under userids other than the web server userid, this directive will limit the number of processes that the server itself can create. Evidence of this situation will be indicated by cannot forkmessages in the error_log.

See also RLimitMEM or RLimitCPU.


Satisfy directive

Syntax: Satisfy any|all
Default: Satisfy all
Context: directory, .htaccess
Status: core
Compatibility: Satisfy is only available in Apache 1.2 and later

Access policy if bothAllowandRequireused. The parameter can be either ‘all’ or ‘any’. This directive is only useful if access to a particular area is being restricted by both username/password and client host address. In this case the default behavior (“all”) is to require that the client passes the address access restriction and enters a valid username and password. With the “any” option the client will be granted access if they either pass the host restriction or enter a valid username and password. This can be used to password restrict an area, but to let clients from particular addresses in without prompting for a password.

See also Require and Allow.


ScoreBoardFile directive

Syntax: ScoreBoardFile file-path
Default:ScoreBoardFile logs/apache_status
Context: server config
Status: core

The ScoreBoardFile directive is required on some architectures to place a file that the server will use to communicate between its children and the parent. The easiest way to find out if your architecture requires a scoreboard file is to run Apache and see if it creates the file named by the directive. If your architecture requires it then you must ensure that this file is not used at the same time by more than one invocation of Apache.

If you have to use a ScoreBoardFile then you may see improved speed by placing it on a RAM disk. But be careful that you heed the same warnings about log file placement and security.

Apache 1.2 and above:

Linux 1.x users might be able to add-DHAVE_SHMGET -DUSE_SHMGET_SCOREBOARDto theEXTRA_CFLAGSin yourConfiguration. This might work with some 1.x installations, but won’t work with all of them. (Prior to 1.3b4,HAVE_SHMGETwould have sufficed.)

SVR4 users should consider adding-DHAVE_SHMGET -DUSE_SHMGET_SCOREBOARDto theEXTRA_CFLAGSin yourConfiguration. This is believed to work, but we were unable to test it in time for 1.2 release. (Prior to 1.3b4,HAVE_SHMGETwould have sufficed.)

See AlsoStopping and Restarting Apache


ScriptInterpreterSource directive

Syntax: ScriptInterpreterSource registry|script
Default:ScriptInterpreterSource script
Context: directory, .htaccess
Status: core (Windows only)

This directive is used to control how Apache 1.3.5 and later finds the interpreter used to run CGI scripts. The default technique is to use the interpreter pointed to by the #! line in the script. Setting

 

Hi,

 

Thought you may find above info. useful.

 

I can’t do much with it at the mo as I’m using shared computers.

 

P.S. Thanks for pawsing to read  my blog
o,-.___,-.
0\./).”.(\./
ooo(_0_)
oOo/ \/))
00,,(II.II)
oo00.00
Please..\~~~~~~
odrop…..\~~~~~
oOme……\~~~
ooOa……….\`~
oOOoline.O…\~
ooOOosome.o..\
OOooOOtime.o./
ooooOOO0o~~\.o./
oOoOoO~~.~–~/
OOoo~~~\\/”\
OOO~~.o//\__-==
~~~~ooo..//

 

Moving on and moving around for those go getters who like to get around

As you may or may not have noticed by now, google only displays one
page of information at a time, no you cannot tile it or even dial it,
sure, go back to google a couple times and then you can use your
windows skills to tile or use other methods for displaying info
simultaneously, but for the avid researcher this options’s not viable
as being obtainable directly from google, this may be an added feature
well worth considering to accommodate researchers and reocurring
searchers as well. As it is important to move around in documents, an
option of retaining previously utilised windows as a type of mini
history or favourites within google may be of some help for those
trying to keep records of searches conducted regarding certain topics
and should be optionally grouped within files. Of course there are
many different methods for moving around within searched sites, which
may include an intragoogle for also optionally searching for documents
on pc as well to save time and minimising of windows and opening of
documents where google could accomodate certain programs running
simultaneously much like the not-so-recently renamed multitaksing.
This would provide for greater efficiency in moving around in
different types of documents. For instance moving around is at first
glance pretty easy as google appears deceptively simply, but let’s say
in one case scenario you have finally completed the fun task of
putting your very own website online, so now you want to search for it
and search for it and seacrh for it, well the odds are searching for
it may take even longer than the original webdesign did, let’s just
work this out here for one minute, your topic serach shows up a
million options, or you want to send a simple greeting but you’re so
shy you don’t know to say hello, decide to call up your tried and
trusted old friend google and find Results 1 – 10 of about 115,000,000
for hallo. (0.30 seconds, amazing, isn’t it, but realistically if you
have 10 pages displayed at a time each with 10 options, and you need a
minute to read summary and possibly explore one or two viable options
at a modest conservate estimate, well then 115,000,000/100=1,150,000
minutes so it there’s 60 minutes in an hour and 24 hours in a day,
please correct me if I’m wrong here, that means there’s 1440 minutes
in a day and for a year times 365 assuming it’s not a leap year, now
I’m going to let you calculate this, how long will such a search
effectively take place in theory, but if you want to try it
practically, plaease feel free to come back to me in a couple months
or so, hey, I’ve got time, in fact I acquired most of my patience
browsing around search engines, yeah, strange, but true, considerably
more than the 0.30 seconds it takes your humble pc to do it, yeah but
it’s a machine you ask yourself, how can a machine be better than
me ,well ,search me, if not, search google. Yeah, moving around in a
single web page is pretty easy as is finding words in a document or
clicking view source code, copying it and impressing your site
visitors with your own modified search engine using tried and trusted
method of stealing souce code and editing it to suit your own purposes
by possibly incorporating tips above to improve but not disprove, heck
no, please, only constructive criticism and not destructive criticism,
after all, just think how many times google directed you to their best
customers and don’t worry about the other millions of hopefuls who
designed websites that will eventually fade into obscurity for want of
sufficient visitors, much like lesser known but no less notorious
celebrities. However, displaying page 911 in a 2008 optional search
could be just a tad more challenging, which is a euphmism for you
being downright flabbergasted, aghast, so you found the end of this
post at last, without even requiring a letter opener.

To google with love

I’ve searched my heart & found message just to say
Google, you’re sought after more with each new day.
Wherever I may go, whatever search you do,
My research will often be of you.
And as the hours logged on go passing by,
There’ll always be a google blogger and I.
There’s nothing quite as apt as searching flowers
To say you care in this worldwideweb of ours
Or better than the first click or miss
To show your true love just as it is.
Or the first surprise billed card
Accompanied by antiviral intrepid guard
As you move your cursor which will soon
Sweep the bowed website of one to festoon.
Would it be dotcom to make each day a happy one?
Would hotmail hence warm your heart like the sun?
By sharing in all the dear online searches you do
Would this day your most sought after wishes come true?
You are also so worthy of aj, gopher,yahoo or anazi as can be
But besmerched with research google means the world to me.

Don’t argue – destroy

Extracts from War Without End, The Terrorists: An Intelligence Dosier, by Christopher Dobson & Ronald Payne

So the unlikely drama of world terrorism continues. The scriptwriters always have another paradox at hand, a fresh twist for the plot, and a few new terrorist movements waiting in the wings –

Terrorism is the art of the unexpected.

Supporters of people proclaimed,
“The Gentiles get freedom and the Jews suffering.” None the less, the rule of thumb was upheld.

Document found on sole survivor of Rome hit-team threatens a “river of blood.”

Exercises for alleviating flatulence

20 exercises to do when suffering from and to alleviate & relieve flatulence
1. Lie flat on the floor with stomach to floor and stretch to front, back and sides with limbs.
2. Lie on the side and stretch in all directions.
3. Roll over and do same on other side.
4. Lie on the back and life legs with thighs to stomach.
5. Lie on back and turn torso from one side to the other.
6. Lie on back leaving shoulders and feet down and life hips and thighs off ground.
7. Hold two hands together under breast bone and push upwards.
8. Put hands below back massaging back.
9. Lie with back flat on floor and knees bent to straighten back and then down.
10. Lie on sides stretching lower arm out as pillow – repeat for either side.
11. Massage stomach anti-clockwise to release negative energy.
12. Massage stomach clockwise to instill positive energy.
13. Sit crossed legged and reach up to the ceiling.
14. Sit up to release blocked energy then relax.
15. Roll up into fetal position.
16. Stand up and stretch to either site.
17. Stand up and stretch up to the ceiling.
18. Lie on stomach lifting head and feet backwards.
19. Sit with hands behind head and incline to either side.
20. Lie down, relax and breathe deeply, trying to pass winds upon exhaling.

Make dedication comment where can dedicate to friend or for good or bad and provide e-mail for notification of friend thereof (or not – anonymous submissions are also permissible;-)

Games browsed at random

Games browsed at random
Spiderman Colors Games
http://www.funnygames.co.uk/spiderman-colors.html
Coloring pages Games
http://www.funnygames.co.uk/coloring-pages.html
Bejeweled Games
http://www.funnygames.co.uk/bejeweled-games.html
Spiderman Colors Games
http://www.funnygames.co.uk/search.php?x=25&y=4&keyword=spiderman
spiderman game – Google Search
http://www.funnygames.co.uk/spiderman-colors.htm
Educational Games and Kids Games
http://www.funnygames.co.uk/kids-games.html
Kissing Games
http://www.funnygames.co.uk/kissing-games.html
Spider-man 3. Rescue Mary Jane | spiderman | Play Spiderman Free Online Game | Free Action Games at gamezhero.com
http://www.gamezhero.com/online-games/arcade-games/spiderman3
Free Online Games | Online Games | Free Games @ gamezhero.com.
http://www.gamezhero.com/freewebsitegames/spiderman3rescuemaryjane-freeonlinegames.html
Don&apos;t Look Back | Games | Flash Arcade Games | Fee Online Games @ Gamezhero.com
http://www.gamezhero.com/online-games/arcade-games/dontlookback-games.html
Chrome Wars Games
http://www.funnygames.co.uk/chrome-wars.htm
My Games at FunnyGames.co.uk
http://www.funnygames.co.uk/mygames.php
set_from_gamesbanner.php
http://www.funnygames.co.uk/
Free Addicting Games
http://www.freeaddictinggames.com/
Corys Money Games
http://www.funnygames.co.uk/corys-money.html
Spiderman Games
http://www.funnygames.co.uk/spiderman.htm
Easter Bunny Differences | Games | Free Online Games @ Gamezhero.com
http://www.gamezhero.com/online-games/sports-games/easterbunnydifferences-games.htmlHYPERLINKhttp://www.funbarmedia.com/download.asp?id=42″FunBarGames – DOWNLOAD STREET FIGHTER 2
Simpsons Must Die | simpsonsmustdie | Simpsons Must Die flash game at gamezhero.com
http://www.gamezhero.com/online-games/shooting-games/simpsonsmustdie-freeflashonline.html
FunBarGames – DOWNLOAD STREET FIGHTER 2
http://www.funbarmedia.com/download.asp?id=42
FunBarGames
http://www.funbarmedia.com/
FunBarGames – DOWNLOAD NEXUIZ
http://www.funbarmedia.com/download.asp?id=46
Gamecetera – arcade banner exchange system
http://www.funbarmedia.com/
Oyunbro oyunları – Bomb A Bomb oyun, Bomb A Bomb oyunu, Bomb A Bomb oyunları, Bomb A Bomb oyna
http://www.oyunbro.com/1346-bomb-a-bomb-oyna.html
Oyunbro – Oyun, Oyunlar, Oyun Oyna
http://www.oyunbro.com/
Naruto. Battle For Leaf Village | Games | Free Online Games @ Gamezhero.com
http://www.gamezhero.com/online-games/arcade-games/narutobattleforleafvillage-games.html?utm_campaign=super_pro3&utm_source=www.dabontv.com&utm_medium=spiderdarkside&utm_content=3
Spiderman Dark Side » Free Flash Game
http://www.dabontv.com/game427play.html
Redstar Fall | Games | Free Online Games @ Gamezhero.com | Puzzle Games
http://www.gamezhero.com/online-games/puzzle-games/redstarfall-games.html?utm_campaign=super_pro3&utm_source=www.dabontv.com&utm_medium=spiderdarkside&utm_content=1
Spiderman! » Free Flash Game
http://www.dabontv.com/game655.html
SpidermanCartoonVersion.jpg (JPEG Image, 477×750 pixels) – Scaled (90%)
http://www.hauntedventures.com/2007NEWTEMPLATES/SuperHeroesAndVillains/SpidermanCartoonVersion.jpg

alt newsgroups

Some interesting alt newsgroups of days yonder (1994 to be exact)
• Alt.1d One dimensional imaging and the thinking behind it
• Alt.2600 The magazine or the game system. You decide.
• Alt.adjective.noun.verb.verb.verb The penultimate alt group
• Alt.amazon-women.admirers Worshipping women you have to look up to
• Alt.ascii-art Pictures composed of ASCII characters
• alt.backrubs Lower…to the right..aaah!
• `alt.beer Good for what alles ya.
• Alt.best.of.the.internet It was a time of sorrow, it was a time of joy.
• Alt.binaries.pictures.cartoons Images from animated cartoons
• Alt.books.anne-rice The Vampire Thermostat
• Alt.brain Busboys Recovering After Intense Noogies
• Atl.college.us Is that “us” as in “U.S.” , or do you just mean y’all?
• Alt.comics.superman No one know who it is also alt.clark.kent
• Alt.conspiracy Be paranoid – they’re out there to get you
• Alt.emulators. ibmpc.apple2 Making your paperweight behave like another
• Alt.society.anarchy Society without rulers
• Alt. whine Why me?