作业三:nginx反向代理三台web
实现基于轮询的方式调度三台web,并验证结果
实现基于权重的方式调度三台web,并验证结果
实现基于hash的方式调用三台web,并验证结果
[root@localhost ~]# vim /etc/nginx/nginx.comf
[root@localhost ~]# vim /etc/nginx
[root@localhost ~]# mkdir -p /www/{8080,8081,8082}
[root@localhost ~]# echo web-8080 > 8080/index.html
[root@localhost ~]# echo web-8081 > 8081/index.html
[root@localhost ~]# echo web-8082> 8082/index.html
[root@localhost ~]# touch /www/{8080,8081,8082}/index index.html
[root@localhost nginx]# systemctl stop firewalld.service
轮询:
权重:
短时间重复循环-8081
hash