This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Put Following Lines in httpd.conf | |
| #Checks if mod_env is loaded and then sets a unconditional Environment variable called "X_Environment" | |
| # Use SetEnvIF for conditional var setting, requires mod_setenvif.c to be loaded | |
| <IfModule mod_env.c> | |
| SetEnv X_Environment Local | |
| </IfModule> | |
| #Checks if mod_headers is loaded and then sets a Response Header called MyHeader with value of environment varuable "X_Environment" set above | |
| # Use http://httpd.apache.org/docs/current/mod/mod_headers.html link for reference |
NewerOlder