19.14. mod_envThe mod_env module manages how environment variables are passed to CGI/SSI scripts from the shell running the httpd server. It contains three straightforward directives.
PassEnv variable ... [server config or within <VirtualHost>] Passes one or more environment variables to the server CGI scripts. PassEnv HOME
SetEnv variable value [server config or within <VirtualHost>] Sets one or more environment variables in the context of a server CGI script. SetEnv HOME /home/mike
UnsetEnv variable ... [server config or within <VirtualHost>] Unsets (removes) one or more environment variables from the context of a server CGI script. UnsetEnv HOME Copyright © 2003 O'Reilly & Associates. All rights reserved. |
|