home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F278289_mod_env.xml < prev    next >
Extensible Markup Language  |  2004-04-17  |  3KB  |  98 lines

  1. <?xml version="1.0"?>
  2. <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
  3. <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
  4. <!-- $Revision: 1.4.2.4 $ -->
  5.  
  6. <!--
  7.  Copyright 2002-2004 The Apache Software Foundation
  8.  
  9.  Licensed under the Apache License, Version 2.0 (the "License");
  10.  you may not use this file except in compliance with the License.
  11.  You may obtain a copy of the License at
  12.  
  13.      http://www.apache.org/licenses/LICENSE-2.0
  14.  
  15.  Unless required by applicable law or agreed to in writing, software
  16.  distributed under the License is distributed on an "AS IS" BASIS,
  17.  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18.  See the License for the specific language governing permissions and
  19.  limitations under the License.
  20. -->
  21.  
  22. <modulesynopsis metafile="mod_env.xml.meta">
  23.  
  24. <name>mod_env</name>
  25. <description>Modifies the environment which is passed to CGI scripts and
  26. SSI pages</description>
  27. <status>Base</status>
  28. <sourcefile>mod_env.c</sourcefile>
  29. <identifier>env_module</identifier>
  30. <summary>
  31.     <p>This module allows for control of the environment that will
  32.     be provided to CGI scripts and SSI pages. Environment variables
  33.     may be passed from the shell which invoked the httpd process.
  34.     Alternatively, environment variables may be set or unset within
  35.     the configuration process.</p>
  36. </summary>
  37. <seealso><a href="../env.html">Environment Variables</a></seealso>
  38.  
  39. <directivesynopsis>
  40. <name>PassEnv</name>
  41. <description>Passes environment variables from the shell</description>
  42. <syntax>PassEnv <var>env-variable</var> [<var>env-variable</var>]
  43. ...</syntax>
  44. <contextlist><context>server config</context><context>virtual host</context>
  45. <context>directory</context><context>.htaccess</context></contextlist>
  46. <override>FileInfo</override>
  47.  
  48. <usage>
  49.     <p>Specifies one or more environment variables to pass to CGI
  50.     scripts and SSI pages from the environment of the shell which
  51.     invoked the httpd process.</p>
  52.  
  53.     <example><title>Example</title>
  54.       PassEnv LD_LIBRARY_PATH
  55.     </example>
  56. </usage>
  57. </directivesynopsis>
  58.  
  59. <directivesynopsis>
  60. <name>SetEnv</name>
  61. <description>Sets environment variables</description>
  62. <syntax>SetEnv <var>env-variable</var> <var>value</var></syntax>
  63. <contextlist><context>server config</context><context>virtual host</context>
  64. <context>directory</context><context>.htaccess</context></contextlist>
  65. <override>FileInfo</override>
  66.  
  67. <usage>
  68.     <p>Sets an environment variable, which is then passed on to CGI
  69.     scripts and SSI pages.</p>
  70.  
  71.     <example><title>Example</title>
  72.       SetEnv SPECIAL_PATH /foo/bin
  73.     </example>
  74. </usage>
  75. </directivesynopsis>
  76.  
  77. <directivesynopsis>
  78. <name>UnsetEnv</name>
  79. <description>Removes variables from the environment</description>
  80. <syntax>UnsetEnv <var>env-variable</var> [<var>env-variable</var>]
  81. ...</syntax>
  82. <contextlist><context>server config</context><context>virtual host</context>
  83. <context>directory</context><context>.htaccess</context></contextlist>
  84. <override>FileInfo</override>
  85.  
  86. <usage>
  87.     <p>Removes one or more environment variables from those passed
  88.     on to CGI scripts and SSI pages.</p>
  89.  
  90.     <example><title>Example</title>
  91.       UnsetEnv LD_LIBRARY_PATH
  92.     </example>
  93. </usage>
  94. </directivesynopsis>
  95.  
  96. </modulesynopsis>
  97.  
  98.