This is a draft of a propsed new doc file. Actually, it would be a replacement for the existing "Special Purpose Environment Variables" document.
The purpose is to provide a unifying document, along the same lines as "Apache's Handler Use" to show how environment variables are set and used in Apache. I think this is useful because environment variables have grown to be very powerful in Apache, and they touch on so many modules that it is hard to figure out how they work from the module docs. I don't think I really like the current format of what I have written. I would be interested in feedback on the overall idea, as well as specifics of how it should be presented. Thanks. -- 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 VariablesApache provides four modules which can be used to modify the environment:
Using Environment VariablesOne 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 can print environment
variables using the 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> |