[users@httpd] Manage a sticky session across

2021-06-26 Thread vadud3
Hi All, I have a setup similar to this |-> proxy 1 --> node 1 User ---> AWS ELB >|-> proxy 2 --> node 2 |-> proxy 3 --> node 3 Here is the config on all the proxy servers to ma

Re: [users@httpd] Re: Consolidate multiple s

2021-05-18 Thread vadud3
On Tue, May 18, 2021 at 4:59 PM Christophe JAILLET < christophe.jail...@wanadoo.fr> wrote: > Le 18/05/2021 à 22:26, vad...@gmail.com a écrit : > > That format got even worse feedback and I would too :-). Lets try this > one. > > > > Have you looked at mod_macro? > > CJ > Hey CJ, I will give that

[users@httpd] Re: Consolidate multiple s

2021-05-18 Thread vadud3
That format got even worse feedback and I would too :-). Lets try this one. ProxyPass /confluencenode1 http://nodecnf001:8092/confluencenode1 ProxyPassReverse /confluencenode1 http://nodecnf001:8092/confluencenode1 ProxyPass /confluencenode2 http://nodecnf002:8092/confluencenode2 ProxyPassReverse

[users@httpd] Re: Consolidate multiple s

2021-05-18 Thread vadud3
Sorry the output was not clean. Trying a different format 1. ProxyPass /confluencenode1 http://nodecnf001:8092/confluencenode1 2. ProxyPassReverse /confluencenode1 http://nodecnf001:8092/confluencenode1 3. ProxyPass /confluencenode2 http://nodecnf002:8092/confluencenode2 4. ProxyPas

[users@httpd] Consolidate multiple s

2021-05-18 Thread vadud3
Hi All, I have this config and it works fine. Looking for a way to consolidate it. I tried few things and no success yet. ProxyPass /confluencenode1 http://nodecnf001:8092/confluencenode1 ProxyPassReverse /confluencenode1 http://nodecnf001:8092/confluencenode1 ProxyPass /confluencenode2 http://no

Re: [users@httpd] Connect to a node instead of a cluster

2021-05-17 Thread vadud3
On Mon, May 17, 2021 at 4:29 PM wrote: > > > On Mon, May 17, 2021 at 2:59 PM Eric Covener wrote: > >> >> >> On Mon, May 17, 2021 at 2:51 PM wrote: >> >>> I added this but it went to a different node instead of node 1 which is >>> msts1acnf001 >>> >>> ProxyPass /confluencenode1 http://msts1acnf0

Re: [users@httpd] Connect to a node instead of a cluster

2021-05-17 Thread vadud3
On Mon, May 17, 2021 at 2:59 PM Eric Covener wrote: > > > On Mon, May 17, 2021 at 2:51 PM wrote: > >> I added this but it went to a different node instead of node 1 which is >> msts1acnf001 >> >> ProxyPass /confluencenode1 http://msts1acnf001:8098/confluence >> ProxyPassReverse /confluencenode1

Re: [users@httpd] Connect to a node instead of a cluster

2021-05-17 Thread vadud3
I added this but it went to a different node instead of node 1 which is msts1acnf001 ProxyPass /confluencenode1 http://msts1acnf001:8098/confluence ProxyPassReverse /confluencenode1 http://msts1acnf001:8098/confluence Any suggestion what am I doing wrong? Thanks, Asif On Mon, May 17, 2021 at

Re: [users@httpd] Connect to a node instead of a cluster

2021-05-17 Thread vadud3
I do have this setup ProxyPass /confluence balancer://confluencedc/confluence ProxyPassReverse /confluence balancer://confluencedc/confluence To access confluence node it needs to hit /confluence and that is already taken by the above config and maps to the context path. I am not sure if I have

[users@httpd] Connect to a node instead of a cluster

2021-05-17 Thread vadud3
Hi All, I have a load balancer setup like below BalancerMember http://msts1acnf001:8098 route=1 BalancerMember http://msts1bcnf002:8098 route=2 BalancerMember http://msts1ccnf003:8098 route=3 ProxySet stickysession=ROUTEID And each node running tomcat and has a context path setup How do I c

Re: [users@httpd] Bypass Authn

2020-09-23 Thread vadud3
On Wed, Sep 23, 2020 at 4:15 PM Eric Covener wrote: > On Wed, Sep 23, 2020 at 4:11 PM wrote: > > > > Hi All, > > > > I am using this config and I am not able to connect to /mydir/noauth > without authentication. > > > > ProxyPass /mydir http://example.org/mydir > > ProxyPassReverse /mydir https:

[users@httpd] Bypass Authn

2020-09-23 Thread vadud3
Hi All, I am using this config and I am not able to connect to /mydir/noauth without authentication. ProxyPass /mydir http://example.org/mydir ProxyPassReverse /mydir https://example.org/mydir Require all granted Order allow,deny Allow from all AuthType Shibboleth