Hi.
I have this config below And I requested upstream resource and got 404
response. However, when I modified 'listen 80' to 'listen 8081', I requested
upstream resource again, I got 200 response. I wonder why.
Thanks.
snippet of my nginx config
http {
upstream backend {
server IP:10000;
server IP:10001;
}
server {
listen 80;
location / {
proxy_pass http://backend;
}
}
}
_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx