You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to test nginx-upstream-fair. I setup a test vm with 2 additional vm's that serve up some content, I have it working already with haproxy, just testing various frontends. I setup this:
worker_processes 1;
events {
worker_connections 1024;
}
http {
upstream backend {
server node2.test123.com:5001;
server node3.test123.com:5001;
fair;
}
for some reason when I try to access node1.test123.com from a browser it tries to do a web search on www.servers.com which I don't understand, is my syntax ok?
The text was updated successfully, but these errors were encountered:
Hi,
I am trying to test nginx-upstream-fair. I setup a test vm with 2 additional vm's that serve up some content, I have it working already with haproxy, just testing various frontends. I setup this:
worker_processes 1;
events {
worker_connections 1024;
}
http {
upstream backend {
server node2.test123.com:5001;
server node3.test123.com:5001;
fair;
}
}
for some reason when I try to access node1.test123.com from a browser it tries to do a web search on www.servers.com which I don't understand, is my syntax ok?
The text was updated successfully, but these errors were encountered: