What does upstream mean in nginx?

2019-01-30 00:24发布

upstream app_front_static {
    server 192.168.206.105:80;
}

Never seen it before, anyone knows, what it means?

2条回答
Melony?
2楼-- · 2019-01-30 00:38

upstream defines a cluster that you can proxy requests to. It's commonly used for defining either a web server cluster for load balancing, or an app server cluster for routing / load balancing.

查看更多
The star\"
3楼-- · 2019-01-30 00:45

It's used for proxying requests to other servers.

An example from http://wiki.nginx.org/LoadBalanceExample is:

http {
  upstream myproject {
    server 127.0.0.1:8000 weight=3;
    server 127.0.0.1:8001;
    server 127.0.0.1:8002;    
    server 127.0.0.1:8003;
  }

  server {
    listen 80;
    server_name www.domain.com;
    location / {
      proxy_pass http://myproject;
    }
  }
}

This means all requests for / go to the any of the servers listed under upstream XXX, with a preference for port 8000.

查看更多
登录 后发表回答