[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

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

2014-04-10 Thread Bremser, Kurt (AMOS Austria GmbH)
er ganz offen ist. Newton was wrong. There is no gravity. The Earth sucks. Von: Andre Nathan [andre...@gmail.com] Gesendet: Donnerstag, 10. April 2014 13:47 An: users@httpd.apache.org Betreff: [users@httpd] Replacing value of existing environment variables [wd-vc

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

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

2014-04-10 Thread Eric Covener
IIUC Not really possible because of the time in request processing that these variables are set -- it is after most modules have run, right before the actual handler. On Thu, Apr 10, 2014 at 5:47 AM, Andre Nathan andre...@gmail.com wrote: Hello Is it possible to replace the value of one of