Re: [users@httpd] Apache virtual hosts listening on specific IPv6 addresses

2020-06-30 Thread David Mehler
Hello, Thanks, actually turned out to be a firewall issue. Thanks a lot. Dave. On 6/28/20, Antony Stone wrote: > On Sunday 28 June 2020 at 17:44:48, David Mehler wrote: > >> Hello, >> >> Yes netstat does show that the sockets are listening on the correct >> addresses. >> >> As for wireshark/ts

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

[users@httpd] Authenticate with one Authtype, authorize with another?

2020-06-30 Thread Mark H. Wood
Our corporate identity service is Microsoft Active Directory. I've set up various things in HTTPD to authenticate/authorize against it via LDAP, but users who are used to SSO run into that AuthBasic credentials prompt and assume that they don't have access to the resource. What they are used to i

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

Re: [users@httpd] Copying environment variables

2020-06-30 Thread Eric Covener
On Tue, Jun 30, 2020 at 11:20 AM Christopher Schultz wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > 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". If it's

[users@httpd] Copying environment variables

2020-06-30 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 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 work as written above, but the documentation doesn't actually suggest