在虚拟机里边搭建负载均衡
配置主服务器
在c盘里边的 system32/drivers/host进行配置 例如a.com
打开nginx里边的配置文件
vim /etc/nginx/nginx.conf
在http中添加 upstream a.com {
server 192.168.5.126:81;从ip
server 192.168.5.27:81;
}
进入 vim /etc/nginx/conf.d/default.conf
server {
listen 81;
server_name a.com; //主域名
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
location / {
proxy_pass http://a.com;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# root /usr/share/nginx/html;
# index index.html index.htm;
}
}
重启nginx
service nginx restart
配置从服务器
server {
listen 81;
server_name a.com; //主域名
}
重启nginx
service nginx restart
nginx负载均衡配置
最新推荐文章于 2024-04-12 00:32:24 发布