You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Randy Terbush <ra...@hyperreal.com> on 1996/12/24 21:45:27 UTC

cvs commit: apache/src mod_env.c

randy       96/12/24 12:45:26

  Modified:    src       mod_env.c
  Log:
  Give a better example of PassEnv SetEnv in the source.
  Submitted by:	Rob Hartill
  
  Revision  Changes    Path
  1.8       +3 -3      apache/src/mod_env.c
  
  Index: mod_env.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_env.c,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -C3 -r1.7 -r1.8
  *** mod_env.c	1996/12/01 20:29:02	1.7
  --- mod_env.c	1996/12/24 20:45:24	1.8
  ***************
  *** 77,85 ****
     *	     Environment variables take their value from the last instance
     *	     of PassEnv / SetEnv to be reached in the configuration file.
     *	     For example, the sequence:
  !  *		PassEnv PATH
  !  *		SetEnv PATH /special/path
  !  *	     Causes PATH to take the value '/special/path'.
     * 23.Feb.96 Added UnsetEnv directive to allow environment variables
     *           to be removed.
     *           Virtual hosts now 'inherit' parent server environment which
  --- 77,85 ----
     *	     Environment variables take their value from the last instance
     *	     of PassEnv / SetEnv to be reached in the configuration file.
     *	     For example, the sequence:
  !  *		PassEnv FOO
  !  *		SetEnv FOO override
  !  *	     Causes FOO to take the value 'override'.
     * 23.Feb.96 Added UnsetEnv directive to allow environment variables
     *           to be removed.
     *           Virtual hosts now 'inherit' parent server environment which