So, here is a second draft of my "Apache Environment Variables" doc. It is also an example of the format I would image future task-specific docs could take. The idea is quite simple:
1. Take a task/topic. 2. List all related modules. 3. List all related directives. 4. Provide a brief discussion of how the directives work, and how they are related to each other. Extensive detail is not necessary, because it should be covered in the directive definitions. 5. Provide a few examples. I imagine the same general format could work for a whole new set of documentation addressing things like authentication, logging, process creation, etc. This is not meant to replace the tutorials and books that are being written about Apache. Rather, it is just a way to give people a fighting chance to understand the server as a whole from the docs. As always, comments and suggestions are welcome. -- Joshua Slive [EMAIL PROTECTED] http://finance.commerce.ubc.ca/~slive/ Phone: (604) 822-1871Title: Special Purpose Environment Variables
Environment Variables in ApacheMany operating systems provide a facility for storage and transmission of information called environment variables. Apache uses environment variables in many ways to control operations and to communicate with other programs like CGI scripts. This document explains some of the ways to use environment variables in Apache.
Setting Environment VariablesRelated ModulesRelated DirectivesThe most basic way to set an environment variable in Apache is
using the unconditional The directives provided by mod_setenvif allow environment variables
to be set on a per-request basis based on characteristics of particular
requests. For example, a variable could be set only when a specific
browser (User-Agent) is making a request, or only when a specific
Referer header is found. Even more flexibility is available through the
mod_rewrite's Finally, the handler provided by mod_unique_id
sets the environment variable Using Environment VariablesRelated ModulesRelated DirectivesOne of the primary uses of environment variables is to communicate information to CGI scripts. In addition to all environment variables set within Apache, CGI scripts are provided with a set of meta-information about the request as provided for in the CGI specification. However, if you are using Suexec to execute CGI scripts under different userids, then the environment will be cleaned down to a set of safe environment variables before the CGI script is executed. Server-parsed (SSI) documents processed by mod_include's
Access to the server can be controlled based on the value of
environment variables using the Environment variables can be logged in the access log using the
The Special Purpose Environment VariablesInteroperability problems have led to the introduction of mechanisms to modify the way Apache behaves when talking to particular clients. To make these mechanisms as flexible as possible, they are invoked by defining environment variables, typically with BrowserMatch, though SetEnv and PassEnv could also be used, for example. downgrade-1.0This forces the request to be treated as a HTTP/1.0 request even if it was in a later dialect. force-no-vary
This causes any force-response-1.0This forces an HTTP/1.0 response when set. It was originally implemented as a result of a problem with AOL's proxies. Some clients may not behave correctly when given an HTTP/1.1 response, and this can be used to interoperate with them. nokeepaliveThis disables KeepAlive when set. ExamplesChanging protocol behavior with misbehaving clientsWe recommend that the following lines be included in httpd.conf to deal with known client problems. # # The following directives modify normal HTTP response behavior. # The first directive disables keepalive for Netscape 2.x and browsers that # spoof it. There are known problems with these browser implementations. # The second directive is for Microsoft Internet Explorer 4.0b2 # which has a broken HTTP/1.1 implementation and does not properly # support keepalive when it is used on 301 or 302 (redirect) responses. # BrowserMatch "Mozilla/2" nokeepalive BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0 # # The following directive disables HTTP/1.1 responses to browsers which # are in violation of the HTTP/1.0 spec by not being able to grok a # basic 1.1 response. # BrowserMatch "RealPlayer 4\.0" force-response-1.0 BrowserMatch "Java/1\.0" force-response-1.0 BrowserMatch "JDK/1\.0" force-response-1.0 Do not log requests for images in the access logThis example keeps requests for images from appearing in the access log. It can be easily modified to prevent logging of particular directories, or to prevent logging of requests coming from particular hosts. SetEnvIf Request_URI \.gif image-request SetEnvIf Request_URI \.jpg image-request SetEnvIf Request_URI \.png image-request CustomLog logs/access_log env=!image-request Prevent "Image Theft"This example shows how to keep people not on your server from using images on your server as inline-images on their pages. This is not a recommended configuration, but it can work in limited circumstances. We assume that all your images are in a directory called /web/images. SetEnvIf Referer "^http://www.example.com/" local_referal # Allow browsers that do not send Referer info SetEnvIf Referer "^$" local_referal <Directory /web/images> Order Deny,Allow Deny from all Allow from env=local </Directory> |