欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

nginx实现负载均衡

程序员文章站 2024-01-31 23:31:46
...

在本地的Windows环境下使用nginx,双击nginx.exe启动。(保证conf\nginx.conf中配置的端口未被占用)

nginx实现负载均衡

查看nginx是否运行:

nginx实现负载均衡

修改conf\nginx.conf, 添加upstream esl, 并使用于proxy_pass:

#其他配置

http {

    upstream esl {
        server 192.168.100.117:9999 weight=3;
        server 192.168.100.118:9999 weight=1;
    }

    #其他配置

	server {
        listen       8888;
        server_name  localhost;

        location / {
            add_header Access-Control-Allow-Origin *;
            add_header Access-Control-Allow-Headers "Origin, X-Requested-With, C                                                                                                                                                        ontent-Type, Accept";
            add_header Access-Control-Allow-Methods "GET, POST, OPTIONS";

            root   html/build/dist;
            index  index.html index.htm;
        }

        location /zk/ {
            rewrite  ^/zk/(.*)$ /$1 break;
            proxy_pass http://esl;
        }
    
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
                   root   html;
        }
    }
}

加载配置:

nginx.exe -s reload

nginx实现负载均衡

配置完成后,访问http://localhost:8888,实际访问esl中配置的两台机器。

PS: nginx.exe的所有操作

nginx实现负载均衡

关闭nginx,只需要

nginx.exe -s quit

 

转载于:https://my.oschina.net/u/4042451/blog/3067288