From 6860be5a294d39019e8ce95c085867168afafe57 Mon Sep 17 00:00:00 2001 From: pcs Date: Wed, 16 Apr 1997 12:21:09 +0000 Subject: [PATCH] Document UnsetEnv. Fix documented syntax of SetEnv. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@77915 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/directives.html | 1 + docs/manual/mod/mod_env.html | 27 +++++++++++++++++++++++---- 2 files changed, 24 insertions(+), 4 deletions(-) diff --git a/docs/manual/mod/directives.html b/docs/manual/mod/directives.html index 610c659fe1..1fd9718f5e 100644 --- a/docs/manual/mod/directives.html +++ b/docs/manual/mod/directives.html @@ -153,6 +153,7 @@
  • TransferLog (mod_log_common)
  • TransferLog (mod_log_config)
  • TypesConfig +
  • UnsetEnv
  • User
  • UserDir
  • <VirtualHost> diff --git a/docs/manual/mod/mod_env.html b/docs/manual/mod/mod_env.html index 7d1532547f..c084bac06c 100644 --- a/docs/manual/mod/mod_env.html +++ b/docs/manual/mod/mod_env.html @@ -25,24 +25,26 @@ rewriting all their scripts

    PassEnv

    -Syntax: PassEnv variable
    +Syntax: PassEnv variable variable ...
    Context: server config, virtual host
    Status: Base
    Module: mod_env
    Compatibility: PassEnv is only available in Apache 1.1 and later.

    -Passes an environment variable to CGI scripts from the server's own -environment. Example: +Specifies one or more environment variables to pass to CGI scripts +from the server's own environment. Example:

         PassEnv LD_LIBRARY_PATH
     
    +

    SetEnv

    Syntax: SetEnv variable value
    @@ -58,8 +60,25 @@ scripts. Example: SetEnv SPECIAL_PATH /foo/bin -

    +


    + +

    UnsetEnv

    +Syntax: UnsetEnv variable variable ...
    +Context: server config, virtual host
    +Status: Base
    +Module: mod_env
    +Compatibility: UnsetEnv is only available in +Apache 1.1 and later.

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

    +    UnsetEnv LD_LIBRARY_PATH
    +
    + + + +

    -- 2.40.0