home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2004 May / Gamestar_62_2004-05_dvd.iso / Programy / apache_2.0.48-win32-x86-no_ssl.msi / Data.Cab / F252722_mod_env.xml < prev    next >
Extensible Markup Language  |  2003-04-15  |  3KB  |  80 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. <modulesynopsis metafile="mod_env.xml.meta">
  5.  
  6. <name>mod_env</name>
  7. <description>Modifies the environment which is passed to CGI scripts and
  8. SSI pages</description>
  9. <status>Base</status>
  10. <sourcefile>mod_env.c</sourcefile>
  11. <identifier>env_module</identifier>
  12. <summary>
  13.     <p>This module allows for control of the environment that will
  14.     be provided to CGI scripts and SSI pages. Environment variables
  15.     may be passed from the shell which invoked the httpd process.
  16.     Alternatively, environment variables may be set or unset within
  17.     the configuration process.</p>
  18. </summary>
  19. <seealso><a href="../env.html">Environment Variables</a></seealso>
  20.  
  21. <directivesynopsis>
  22. <name>PassEnv</name>
  23. <description>Passes environment variables from the shell</description>
  24. <syntax>PassEnv <var>env-variable</var> [<var>env-variable</var>]
  25. ...</syntax>
  26. <contextlist><context>server config</context><context>virtual host</context>
  27. <context>directory</context><context>.htaccess</context></contextlist>
  28. <override>FileInfo</override>
  29.  
  30. <usage>
  31.     <p>Specifies one or more environment variables to pass to CGI
  32.     scripts and SSI pages from the environment of the shell which
  33.     invoked the httpd process.</p>
  34.  
  35.     <example><title>Example</title>
  36.       PassEnv LD_LIBRARY_PATH
  37.     </example>
  38. </usage>
  39. </directivesynopsis>
  40.  
  41. <directivesynopsis>
  42. <name>SetEnv</name>
  43. <description>Sets environment variables</description>
  44. <syntax>SetEnv <var>env-variable</var> <var>value</var></syntax>
  45. <contextlist><context>server config</context><context>virtual host</context>
  46. <context>directory</context><context>.htaccess</context></contextlist>
  47. <override>FileInfo</override>
  48.  
  49. <usage>
  50.     <p>Sets an environment variable, which is then passed on to CGI
  51.     scripts and SSI pages.</p>
  52.  
  53.     <example><title>Example</title>
  54.       SetEnv SPECIAL_PATH /foo/bin
  55.     </example>
  56. </usage>
  57. </directivesynopsis>
  58.  
  59. <directivesynopsis>
  60. <name>UnsetEnv</name>
  61. <description>Removes variables from the environment</description>
  62. <syntax>UnsetEnv <var>env-variable</var> [<var>env-variable</var>]
  63. ...</syntax>
  64. <contextlist><context>server config</context><context>virtual host</context>
  65. <context>directory</context><context>.htaccess</context></contextlist>
  66. <override>FileInfo</override>
  67.  
  68. <usage>
  69.     <p>Removes one or more environment variables from those passed
  70.     on to CGI scripts and SSI pages.</p>
  71.  
  72.     <example><title>Example</title>
  73.       UnsetEnv LD_LIBRARY_PATH
  74.     </example>
  75. </usage>
  76. </directivesynopsis>
  77.  
  78. </modulesynopsis>
  79.  
  80.