RE: [users@httpd] Transaction/request token

2020-10-15 Thread DICKEY Rob
One very simple idea is just use an epoch timestamp as a tracking, correlation header? Header set x-correlation-header "%t" (or RequestHeader) x-correlation-header t=1602793505297786 -Original Message- From: Eric Covener Sent: Thursday, October 15, 2020 12:44 PM To: users@httpd.apache.

Re: [users@httpd] Transaction/request token

2020-10-15 Thread Eric Covener
On Thu, Oct 15, 2020 at 3:30 PM Niranjan Rao wrote: > > Greetings, > > On Ubuntu 20.04, apache version 2.4.29. > > > I did obvious google searches, but may be I am missing right search > terms and hence request for the help. > > > We have bunch of services on back end servers and we use Apache pro

[users@httpd] Transaction/request token

2020-10-15 Thread Niranjan Rao
Greetings, On Ubuntu 20.04, apache version 2.4.29. I did obvious google searches, but may be I am missing right search terms and hence request for the help. We have bunch of services on back end servers and we use Apache proxy pass and related stuff. This all works perfectly and as documen

Re: [users@httpd] Forwarding IP to HTTPS. [EXT]

2020-10-15 Thread Jason Long
Hello, Here is the output of "apachectl -S" command: # apachectl -S #  And I changed the config as below: RequestHeader unset X-is-ssl RewriteEngine     on RewriteRule       ^(.*)$ https://www.example.net%{REQUEST_URI} [R=permanent,L,NE] ## Send all traffic on port 443 which isn't the pri

Re: [users@httpd] Reverse proxy for app that only serves compressed content

2020-10-15 Thread Nick Kew
> On 9 Oct 2020, at 22:31, Ian Pilcher wrote: > > Currently, the client (browser) sends its request with an Accept- > Encoding header, but the proxy's request to the server does not include > that header, so the server returns a 404. Just to add to my previous reply, I've verified it works as

Re: [users@httpd] SetHandler proxy fcgi: Prevent adding the current document root

2020-10-15 Thread Eric Covener
On Thu, Oct 15, 2020 at 2:51 AM Robin Kluth wrote: > > I already tested a bit with rewrite bit my and your variant is not working. > If I set your variant the result is: > > > mod_proxy_fcgi.c(995): [client 172.31.30.115:54624] AH01076: url: > fcgi://127.0.0.1:9005//opt/data/another proxyname: (

Re: [users@httpd] SetHandler proxy fcgi: Prevent adding the current document root

2020-10-15 Thread Robin Kluth
I thought I fixed it with: ProxyFCGISetEnvIf true DOCUMENT_ROOT "/another/path" but this is applied as env var after examining the url for AH01078: serving URL.. serving URL fcgi://127.0.0.1:9005//opt/data/index.php, [...] fix_cgivars: override DOCUMENT_ROOT from '/opt/data/' to '/anoth