Recently have been deployed a web page using Weblogic Cluster. The page inside the WL works properly.
In front of the WebLogic Servers there are two servers with Apache, keepalived and HAPROXY installed.
The problem we have is that whenever you access from internet the web page, it display wells. Then when you put the user/password it sends an error saying: "Web Page /URL xxxxxxxxxxx not found."
If we go through http the whole time instaed of https, everything works fine. The problem seems that when haproxy (apache server) receives the http answser from the WL cluster, the HAPROXY can't handle it. The site is supposed to work the whole time as https.
Here is the configuration of the haproxy, because we think the problem is with this service itself. Since on the WL side, the portal works fine with http.
We tried to put a self-signed certificate on the WL cluster but we got two problems, the web page sends a time out after trying to log in or it won't simple display anyhting.
#--------------------------------------------------------------------- # main frontend which proxys to the backends #--------------------------------------------------------------------- frontend main bind 172.20.1.43:5050 bind 172.20.1.43:443 ssl crt /etc/ssl/private/luminarias.pem #mode tcp mode http option tcp-check default_backend app frontend check bind 172.20.1.43:8014 mode http default_backend checkWebApp #--------------------------------------------------------------------- # round robin balancing between the various backends #--------------------------------------------------------------------- backend app balance roundrobin #mode tcp mode http stats enable stats auth system:xxxxx cookie JSESSIONID prefix option httpclose option forwardfor server WSASEP_APP1 7.7.7.2:8014 check inter 1s server WSASEP_APP2 7.7.7.5:8014 check inter 1s backend checkWebApp balance roundrobin mode http stats enable stats auth xxxxx:xxxxx cookie JSESSIONID prefix option httpclose option forwardfor server WSASEP_APP1 7.7.7.2:8014 check inter 1s server WSASEP_APP2 7.7.7.5:8014 check inter 1s