Nginx的负载均衡 - 整体架构 Nginx版本:1.9.1 我的博客:http://blog.csdn.net/zhangskd Nginx目前提供的负载均衡模块: ngx_http_upstream_round_robin,加权轮询,可均分请求,是默认的HTTP负载均衡算法,集成在框架中. ngx_http_upstream_ip_hash_module,IP哈希,可保持会话. ngx_http_upstream_least_conn_module,最少连接数,可均分连接. ngx_htt…