[users@httpd] Replacing value of existing environment variables

2014-04-10 Thread Andre Nathan
Hello Is it possible to replace the value of one of apache's existing environment variables such as SERVER_ADDR? I tried both forms below but the didn't work: Setenv SERVER_ADDR 1.2.3.4 SetenvIf Server_Addr .? SERVER_ADDR=1.2.3.4 Is there any other way? Thanks in advance, Andre

Re: [users@httpd] Replacing value of existing environment variables [wd-vc]

2014-04-10 Thread Andre Nathan
On Thu, Apr 10, 2014 at 9:46 AM, Bremser, Kurt (AMOS Austria GmbH) kurt.brem...@allianz.at wrote: Do you use csh? If not, the setenv won't work, because it is a csh builtin command. Use export SERVER_ADDR=1.2.3.4 (sh, ksh, bash builtin command) instead. Kurt Bremser I don't, but the