I am using nginx for reverse proxy and load balancing. I can see page jump between myapp.com and google.com, but it only display 404 not found page, not the main page. The config is below:
upstream backend
server myapp.com;
server www.google.com;
server
listen 80;
location / {
proxy_pass http://backend;
}
Do you guys have any ideasabout the configuration issue?