I have performed the steps and static app is also accessble, but still it throwing an error. please find the attached.
Can you confirm your nginx conf was similar to this?
http {
upstream backend {
server stapp01.stratos.xfusioncorp.com:<apache-port>; # try with FQDN here
server stapp02.stratos.xfusioncorp.com:<apache-port>;
server stapp03.stratos.xfusioncorp.com:<apache-port>;
}
server {
listen 80;
location / {
proxy_pass http://backend;
}
}
}
Hi Santosh,
Thank you for replying, i have solved it by using the correct port.


