Apache 2 with Weblogic Plug-in Redirection, original location still requested to backend
Posted
by
Edo
on Server Fault
See other posts from Server Fault
or by Edo
Published on 2010-08-11T10:50:23Z
Indexed on
2011/11/20
9:58 UTC
Read the original article
Hit count: 549
We're trying to setup an SSL server in front of a Weblogic server using Apache as the SSL provider. Here's what's inside of our httpd.conf:
<Location /original>
SetHandler weblogic-handler
WebLogicHost 10.11.1.1
WebLogicPort 8700
PathTrim /original
PathPrepend /destination
ConnectTimeoutSecs 60
</Location>
<Location /destination>
SetHandler weblogic-handler
WebLogicHost 10.11.1.1
WebLogicPort 8700
ConnectTimeoutSecs 60
</Location>
This setup works mostly, but in the ssl_error_log file there're these entries:
[Wed Aug 11 14:59:00 2010] [error] [client xxx.xxx.xxx.xxx] ap_proxy: trying GET /original at backend host '10.11.1.1/8700; got
exception 'CONNECTION_REFUSED [os error=0, line 1739 of ../nsapi/URL.cpp]: Error connecting to host 10.11.1.1:8700'
The weird thing is, the redirection still works, but these annoying entries still shows up. Anyone can point out where did we go wrong? Thanks.
© Server Fault or respective owner