pcs 97/04/16 05:21:10
Modified: htdocs/manual/mod directives.html mod_env.html
Log:
Document UnsetEnv. Fix documented syntax of SetEnv.
Revision Changes Path
1.18 +1 -0 apache/htdocs/manual/mod/directives.html
Index: directives.html
===================================================================
RCS file: /export/home/cvs/apache/htdocs/manual/mod/directives.html,v
retrieving revision 1.17
retrieving revision 1.18
diff -C3 -r1.17 -r1.18
*** directives.html 1997/04/16 09:50:17 1.17
--- directives.html 1997/04/16 12:21:09 1.18
***************
*** 153,158 ****
--- 153,159 ----
<li><A HREF="mod_log_common.html#transferlog">TransferLog</A>
(mod_log_common)
<li><A HREF="mod_log_config.html#transferlog">TransferLog</A>
(mod_log_config)
<li><A HREF="mod_mime.html#typesconfig">TypesConfig</A>
+ <li><A HREF="mod_env.html#unsetenv">UnsetEnv</A>
<li><A HREF="core.html#user">User</A>
<li><A HREF="mod_userdir.html#userdir">UserDir</A>
<li><A HREF="core.html#virtualhost"><VirtualHost></A>
1.4 +23 -4 apache/htdocs/manual/mod/mod_env.html
Index: mod_env.html
===================================================================
RCS file: /export/home/cvs/apache/htdocs/manual/mod/mod_env.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -C3 -r1.3 -r1.4
*** mod_env.html 1996/12/02 18:14:05 1.3
--- mod_env.html 1997/04/16 12:21:09 1.4
***************
*** 25,48 ****
<ul>
<li><A HREF="#passenv">PassEnv</A>
<li><A HREF="#setenv">SetEnv</A>
</ul>
<hr>
<A name="passenv"><h2>PassEnv</h2></A>
! <strong>Syntax:</strong> PassEnv <em>variable</em><br>
<strong>Context:</strong> server config, virtual host<br>
<strong>Status:</strong> Base<br>
<strong>Module:</strong> mod_env<br>
<strong>Compatibility:</strong> PassEnv is only available in
Apache 1.1 and later.<p>
! Passes an environment variable to CGI scripts from the server's own
! environment. Example:
<pre>
PassEnv LD_LIBRARY_PATH
</pre>
<A name="setenv"><h2>SetEnv</h2></A>
<strong>Syntax:</strong> SetEnv <em>variable value</em><br>
--- 25,50 ----
<ul>
<li><A HREF="#passenv">PassEnv</A>
<li><A HREF="#setenv">SetEnv</A>
+ <li><A HREF="#unsetenv">UnsetEnv</A>
</ul>
<hr>
<A name="passenv"><h2>PassEnv</h2></A>
! <strong>Syntax:</strong> PassEnv <em>variable variable ...</em><br>
<strong>Context:</strong> server config, virtual host<br>
<strong>Status:</strong> Base<br>
<strong>Module:</strong> mod_env<br>
<strong>Compatibility:</strong> PassEnv is only available in
Apache 1.1 and later.<p>
! Specifies one or more environment variables to pass to CGI scripts
! from the server's own environment. Example:
<pre>
PassEnv LD_LIBRARY_PATH
</pre>
+ <HR>
<A name="setenv"><h2>SetEnv</h2></A>
<strong>Syntax:</strong> SetEnv <em>variable value</em><br>
***************
*** 58,65 ****
SetEnv SPECIAL_PATH /foo/bin
</pre>
! <p>
<!--#include virtual="footer.html" -->
</BODY>
</HTML>
--- 60,84 ----
SetEnv SPECIAL_PATH /foo/bin
</pre>
! <hr>
!
! <A name="unsetenv"><h2>UnsetEnv</h2></A>
! <strong>Syntax:</strong> UnsetEnv <em>variable variable ...</em><br>
! <strong>Context:</strong> server config, virtual host<br>
! <strong>Status:</strong> Base<br>
! <strong>Module:</strong> mod_env<br>
! <strong>Compatibility:</strong> UnsetEnv is only available in
! Apache 1.1 and later.<p>
+ Removes one or more environment variables from those passed on to
+ CGI scripts. Example:
+ <pre>
+ UnsetEnv LD_LIBRARY_PATH
+ </pre>
+
+
+
+ <p>
<!--#include virtual="footer.html" -->
</BODY>
</HTML>