I have two apps running on three separate Liberty Profile servers (each). The first app renders the UI and second apps serves data via REST webservices. The UI application has a login page that on successful landing takes the user to the home page. Homepage shows some data received as a response from the other REST app on the same server
I have configured a Load balancer infront of those 3 servers. I am able to login successfully and land on the homepage. But the page is not populated with the responses from the REST service.
Following is the default.conf entry i have added in nginx plus.
upstream mycluster {
ip_hash;
server 162.194.243.182:9080;
server 162.194.243.183:9080;
server 162.194.243.184:9080;
}
location / {
proxy_pass http://mycluster;
}
I am not sure what is the configuration I miss from the point of Loadbalancer. Could someone help me here?
Thank you.