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
...@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
. 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
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
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
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
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