参考地址:http://www.nginx.cn/doc/example/loadbanlance.html
一个简单的负载均衡的示例,把www.domain.com均衡到本机不同的端口,也可以改为均衡到不同的地址上。>
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; : } : } }
原文地址:https://www.cnblogs.com/wmqiang/p/10565250.html
时间: 2024-11-02 16:17:36