[users@httpd] 404 error

2021-06-08 Thread Beard, Shawn
We have put Apache behind a Netscaler load balancer. We have the VIP set up with ssl and it is terminating SSL at the netscaler. The backend webserver is not SSL. When we go to the https vanity url, we get a 404 error. But when I go to webserver directly on using host:port, it works just fine. I

RE: [users@httpd] 404 error [EXTERNAL]

2021-06-08 Thread Beard, Shawn
...@wrberkley.com<mailto:sbe...@wrberkley.com> From: Beard, Shawn Sent: Tuesday, June 8, 2021 8:21 AM To: users@httpd.apache.org Subject: [users@httpd] 404 error [EXTERNAL] ** CAUTION: External message We have put Apache behind a Netscaler load balancer. We have the VIP set up with ssl and

RE: [users@httpd] 404 error [EXTERNAL]

2021-06-08 Thread Beard, Shawn
. Systems Engineer | BTS Middleware Engineering | +1-515-564-2528 | sbe...@wrberkley.com<mailto:sbe...@wrberkley.com> From: Beard, Shawn Sent: Tuesday, June 8, 2021 9:22 AM To: users@httpd.apache.org Subject: RE: [users@httpd] 404 error [EXTERNAL] ** CAUTION: External m

RE: [users@httpd] Proxy reporting AH00898: Error reading from remote server [EXTERNAL]

2021-09-21 Thread Beard, Shawn
2 things you can do. : On the tomcat side of things, for the connector try this setting: maxThreads="500" The default is only 200 if not specified. Definitions can be found here: https://tomcat.apache.org/tomcat-9.0-doc/config/http.html On the apache webserver side of things you may need to make

RE: [users@httpd] mod_proxy_http tuning [EXTERNAL]

2022-08-03 Thread Beard, Shawn
Try adding this to the tomcat connector you are using in the server.xml if you don’t already have it and restart tomcat. proxyName="your.url.com" proxyPort="your ssl port" scheme="https" secure="true" ​ Shawn Beard• Sr. System

RE: [users@httpd] mod_proxy_http tuning [EXTERNAL]

2022-08-03 Thread Beard, Shawn
Also here is what we use our virtualhost config in apache for this and it works well. Header add Set-Cookie "ROUTEID=.%{BALANCER_WORKER_ROUTE}e; path=/" env=BALANCER_ROUTE_CHANGED BalancerMember http://server:port route=yourjvmroute connectiontimeout=600 timeout=1200 Balance

RE: [users@httpd] mod_proxy_http tuning [EXTERNAL]

2022-08-09 Thread Beard, Shawn
tuning [EXTERNAL] Thank you for your help On Wed, Aug 3, 2022, 10:42 AM Beard, Shawn mailto:sbe...@wrberkley.com.invalid>> wrote: Try adding this to the tomcat connector you are using in the server.xml if you don’t already have it and restart tomcat. proxyName="you