ngnix
1.LVS实现四层负载均衡,负责管理nginx集群,nginx负责管理服务器集群,借助Keepalived实现nginx的高可用性。
2.nginx配置动态资源和静态资源访问
静态资源和动态资源访问分开配置,静态资源在location中使用本地文件路径配置方式,动态资源使用proxy_pass配置到后台服务器。
###静态资源访问 server { listen 80; server_name static.itmayiedu.com; location /static/imgs { root F:/; index index.html index.htm; } } ###动态资源访问 server { listen 80; server_name www.itmayiedu.com; location / { proxy_pass http://127.0.0.1:8080; index index.html index.htm; } }
upstream 负载均衡配置
server [IP] [weight] [backup] 配置tomcat集群
proxy_connect_timeout、proxy_read_timeout、proxy_send_timeout 连接时间、真实服务器响应时间、返回结果时间
location 匹配用户请求的url
root 配置本地资源路径
proxy_pass 配置真实服务器地址
3.nginx和keepalive配置
https://blog.csdn.net/l1028386804/article/details/72801492
https://www.jianshu.com/p/a6b5ab36292a