From cf3849152cdc1cf72690dc5cd7c00c3f5e5dc326 Mon Sep 17 00:00:00 2001 From: Joshua Slive Date: Wed, 6 Mar 2002 01:51:37 +0000 Subject: [PATCH] mod_env xml conversion. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93723 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_env.xml | 80 +++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 docs/manual/mod/mod_env.xml diff --git a/docs/manual/mod/mod_env.xml b/docs/manual/mod/mod_env.xml new file mode 100644 index 0000000000..a502fb5745 --- /dev/null +++ b/docs/manual/mod/mod_env.xml @@ -0,0 +1,80 @@ + + + + +mod_env + Modifies the environment which is + passed to CGI scripts and SSI pages + Base + mod_env.c + env_module + +

This module allows for control of the environment that will + be provided to CGI scripts and SSI pages. Environment variables + may be passed from the shell which invoked the httpd process. + Alternatively, environment variables may be set or unset within + the configuration process.

+
+ Environment Variables + + + PassEnv + Passes environment variables from the shell + PassEnv + env-variable [env-variable] ... + + server configvirtual host + directory.htaccess + + FileInfo + + +

Specifies one or more environment variables to pass to CGI + scripts and SSI pages from the environment of the shell which + invoked the httpd process. Example:

+ + PassEnv LD_LIBRARY_PATH + +
+
+ + +SetEnv +Sets environment variables +SetEnv env-variable value + +server configvirtual host +directory.htaccess + +FileInfo + + +

Sets an environment variable, which is then passed on to CGI + scripts and SSI pages. Example:

+ + SetEnv SPECIAL_PATH /foo/bin + +
+
+ + +UnsetEnv +Removes variables from the environment +UnsetEnv env-variable [env-variable] ... + +server configvirtual host +directory.htaccess + +FileInfo + + +

Removes one or more environment variables from those passed + on to CGI scripts and SSI pages. Example:

+ + UnsetEnv LD_LIBRARY_PATH + +
+
+ +
+ -- 2.50.1