Re: [users@httpd] Re: Copying environment variables

2020-06-30 Thread Eric Covener
> > 1. mod_proxy_balancer sets BALANCER_WORKER_STATUS env var as in BZ > > 64338 2. mod_proxy_ajp copies BALANCER_WORKER_STATUS to > > request-attribute (that's a thing in AJP) and sends to origin > > server 3. mod_proxy_http copies BALANCER_WORKER_STATUS to > > X-Worker-Status (or similar) request

Re: [users@httpd] Re: Copying environment variables

2020-06-30 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 All, On 6/30/20 12:42, Christopher Schultz wrote: > Eric, > > On 6/30/20 11:47, Eric Covener wrote: >>> Does it need direct-support from mod_proxy instead of trying >>> to cobble the pieces together from BZ 64338 and other existing >>> directives? M

Re: [users@httpd] Re: Copying environment variables

2020-06-30 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Eric, On 6/30/20 11:47, Eric Covener wrote: >> Does it need direct-support from mod_proxy instead of trying to >> cobble the pieces together from BZ 64338 and other existing >> directives? My goal with 64388 was to write the smallest patch >> that c

Re: [users@httpd] Re: Copying environment variables

2020-06-30 Thread Eric Covener
> Does it need direct-support from mod_proxy instead of trying to cobble > the pieces together from BZ 64338 and other existing directives? My > goal with 64388 was to write the smallest patch that could get the job > done, but I'm not sure it's possible do to it in this way. I think so. The area

[users@httpd] Re: Copying environment variables

2020-06-30 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 All, On 6/30/20 11:20, Christopher Schultz wrote: > All, > > Is it possible to "copy" an environment variable to another name? > Something like this: > > SetEnv foo "bar" SetEnv baz ${foo}e > > Now, "baz" has value "bar". > > It doesn't appear to wo