Re: [users@httpd] mod proxy hcheck not observing timeout value

2022-12-02 Thread Daniel Ferradal
Hello, Perhaps the dev list is a more appropriate place to bring this up. Cheers El mar, 22 nov 2022 a las 9:39, Codeweavers () escribió: > Hey Daniel, > > Would you be able to advise how I might push to get this change into > 2.4.55? Or if there is someone I should be asking? > > Kind regards >

Re: [users@httpd] mod proxy hcheck not observing timeout value

2022-11-22 Thread Codeweavers
Hey Daniel, Would you be able to advise how I might push to get this change into 2.4.55? Or if there is someone I should be asking? Kind regards Ben On Fri, 18 Nov 2022 at 08:56, Codeweavers wrote: > Hi Daniel, > > We initially had trouble as this patch seems from our testing to require > the

Re: [users@httpd] mod proxy hcheck not observing timeout value

2022-11-18 Thread Codeweavers
Hi Daniel, We initially had trouble as this patch seems from our testing to require the timeout value set on the BalancerMember line of the configuration, which to us was not immediately obvious (many parts of the configuration seem to take a timeout that from the documents seem like it would repr

Re: [users@httpd] mod proxy hcheck not observing timeout value

2022-11-17 Thread Daniel Ferradal
Hello, I initially reported this in April 2021 and @Yann Ylavic quickly made a patch out of it. I am not sure why it didn't make it. You can see the conversation here for reference: https://httpd.markmail.org/message/xteh3uw53inl25gx?q=mod_proxy_hcheck+response+timeout%3F I also agree it is a go

[users@httpd] mod proxy hcheck not observing timeout value

2022-11-17 Thread Benjamin Davis
Hey All, we have apache2 2.4.54 setup as a load balancer for our IIS backend servers. We would like to be able to carry out health checks using mod_proxy_hcheck and check that the backend server is serving a webpage. We have successfully set this up however in the event that a health check request

Re: [users@httpd] Mod proxy balancer route length issue?

2020-07-07 Thread angel Hall-Coulston
There are far too many characters. There has to be less than (the mathematical '<' less-than character) 64 characters. So some shortening of directory names called for there. Angel Scotland. "Those that never give, but always take, are common thieves… " > On 7 Jul 2020, at 14:36, Wendell Hatch

[users@httpd] Mod proxy balancer route length issue?

2020-07-07 Thread Wendell Hatcher
How do I resolve this issue within my conf file? ERR>! AH00526: Syntax error on line 4 of /home/cqrobotallhanauser/archive/deployments/personal_cqrobotallhanauser/ssws/SSWSRel-RH6-190/config/cluster-ss-testserver.conf: ! BalancerMember Route length must be < 64 characters Wendell

[users@httpd] mod proxy, SSI and Options Includes

2018-11-01 Thread Rajesh Karuturi
Hi All, Good day All. We are having an issue - Server Side Includes are not working properly when the request is being proxy to Tomcat from Apache server. It is working only when we set the "Options +Includes" in the element. Can you please suggest is the intended behavior. When the Apache H

[users@httpd] mod proxy no response from http post

2014-04-30 Thread Smith, Mitchell
Hi, I have an application where a http post is sent to a service which returns a 202 status code. I am trying to pass this via my apache httpd server to maintain same origin, and reduce the access into the private network. What appears to happen however is: - Client sends http post - httpd corr

Re: [users@httpd] mod proxy balancer problem/question...

2013-04-02 Thread Sean Alderman
I have proven, through my own experimentation, that removing the status=+H from the stateful balancer's member allow normal load balancing for the stateless proxy balancer. Leaving the status=+H in the stateful balancer's config causes ALL requests in the stateless balancer to route to tccontainer

Re: [users@httpd] mod proxy balancer problem/question...

2013-04-02 Thread Igor Cicimov
On 03/04/2013 7:28 AM, "Sean Alderman" wrote: > > Perhaps I've not explained correctly, I apologize. The concept I was going for was to have two independent balancers that point to the same tomcat instances. > > In the webservices virtual host I would have a configuration like so: > > ProxyPass

Re: [users@httpd] mod proxy balancer problem/question...

2013-04-02 Thread Sean Alderman
Perhaps I've not explained correctly, I apologize. The concept I was going for was to have two independent balancers that point to the same tomcat instances. In the webservices virtual host I would have a configuration like so: ProxyPass /service-sticky/ balancer://webservices-sticky/service-s

Re: [users@httpd] mod proxy balancer problem/question...

2013-04-02 Thread Igor Cicimov
On 03/04/2013 2:02 AM, "Sean Alderman" wrote: > > Greetings, > I am running httpd 2.2.23.0-64 with mod_proxy to load balance Tomcat 6.0.36.B containers. I have encountered a somewhat strange situation, and I was wondering if anyone could comment and or propose an alternative. > > I have a case

[users@httpd] mod proxy balancer problem/question...

2013-04-02 Thread Sean Alderman
Greetings, I am running httpd 2.2.23.0-64 with mod_proxy to load balance Tomcat 6.0.36.B containers. I have encountered a somewhat strange situation, and I was wondering if anyone could comment and or propose an alternative. I have a case where my tomcat containers have multiple webservice appl

Re: [users@httpd] Mod-Proxy and Mod-Headers

2011-09-21 Thread Suneet Shah
Hi Igor, thanks for your help. I will try this out suneet On Wed, Sep 21, 2011 at 1:20 AM, Igor Cicimov wrote: > Hi mate, > > Try something like this for the example you gave > http://host/myapp?userid=abc&role=myrole: > > RewriteEngine on > Options +FollowSymLinks

Re: [users@httpd] Mod-Proxy and Mod-Headers

2011-09-20 Thread Igor Cicimov
Hi mate, Try something like this for the example you gave http://host/myapp?userid=abc&role=myrole: RewriteEngine on Options +FollowSymLinks RewriteCond QUERY_STRING userid=(.*)&role=(.*) RewriteRule ^/myapp$ [E=var1:%1,var2:%2] RequestHeader append use

Re: [users@httpd] Mod-Proxy and Mod-Headers

2011-09-20 Thread Suneet Shah
Thanks Igor. Would you be able to point me to an example? I dont fully understand how I can configure this to take a parameter of the query string and then set a variable as a header. thanks for your help On Tue, Sep 20, 2011 at 6:29 PM, Igor Cicimov wrote: > Use mod_rewrite to set variable a

Re: [users@httpd] Mod-Proxy and Mod-Headers

2011-09-20 Thread Igor Cicimov
Use mod_rewrite to set variable and then set that var as header. On Sep 21, 2011 7:32 AM, "Suneet Shah" wrote: > Hello, > > I had a question about Mod-Proxy and Mod_headers > > 1) Is it possible to take a values that are on a query string and pass them > as headers? If so how? > For example, if I

[users@httpd] Mod-Proxy and Mod-Headers

2011-09-20 Thread Suneet Shah
Hello, I had a question about Mod-Proxy and Mod_headers 1) Is it possible to take a values that are on a query string and pass them as headers? If so how? For example, if I have: http://host/myap?userid=abc&role=myrole I would like to take the values in the query string and pass them as headers

Re: [users@httpd] Mod-Proxy

2011-09-15 Thread Suneet Shah
Hi Joshua, thanks for your help with this. this is application was developed by a 3rd party. Sounds like this will be fun Regards, Suneet On Thu, Sep 15, 2011 at 1:40 PM, Joshua Stoutenburg wrote: > On Thu, Sep 15, 2011 at 10:09 AM, Suneet Shah > wrote: > > Hello, > > > > I am trying to setup

Re: [users@httpd] Mod-Proxy

2011-09-15 Thread Joshua Stoutenburg
On Thu, Sep 15, 2011 at 10:09 AM, Suneet Shah wrote: > Hello, > > I am trying to setup a reverse proxy to one of our applications, but I am > finding that the page comes up, but all the urls that load the stylesheets > and javascript are all broken. > > I have pasted below my configuration. Any th

[users@httpd] Mod-Proxy

2011-09-15 Thread Suneet Shah
Hello, I am trying to setup a reverse proxy to one of our applications, but I am finding that the page comes up, but all the urls that load the stylesheets and javascript are all broken. I have pasted below my configuration. Any thoughts on what I am doing wrong or overlooked? ProxyPass http:/

Re: [users@httpd] Mod Proxy

2011-09-11 Thread Suneet Shah
Thanks Eric On Sun, Sep 11, 2011 at 3:53 PM, Eric Covener wrote: > On Sun, Sep 11, 2011 at 3:39 PM, Suneet Shah > wrote: > > Hello, > > > > I have setup a basic proxy configuration as shown below. The application > we > > are integrating with, makes use of Java Applets that are launched throug

Re: [users@httpd] Mod Proxy

2011-09-11 Thread Eric Covener
On Sun, Sep 11, 2011 at 3:39 PM, Suneet Shah wrote: > Hello, > > I have setup a basic proxy configuration as shown below.  The application we > are integrating with, makes use of Java Applets that are launched through a > JNLP file. > I would like to know if this applet will be loaded through the

[users@httpd] Mod Proxy

2011-09-11 Thread Suneet Shah
Hello, I have setup a basic proxy configuration as shown below. The application we are integrating with, makes use of Java Applets that are launched through a JNLP file. I would like to know if this applet will be loaded through the proxy or if the proxy skips this. In production we will have ru