标签:www makefile serve stream ast oca image png 测试
一.nginx实现负载均衡或者代理
1. 在前面我们已经说过,安装nginx许多核心模块已经安装,nginx的配置文件是以模块的形式组织的,不同的模块实现不同的功能,其中代理或者说负载是upstream_module模块实现的,所以我们首先要安装nginx,通过./configure文件时,我们可以看到在生成makefile的时候,默认是安装了upstream_modul。
[root@proxy nginx-1.6.2]# ./configure --help |grep upstream
--without-http_upstream_ip_hash_module
disable ngx_http_upstream_ip_hash_module
--without-http_upstream_least_conn_module
disable ngx_http_upstream_least_conn_module
--without-http_upstream_keepalive_module
disable ngx_http_upstream_keepalive_module
2.在nginx配置文件中进行配置:/application/nginx/conf的nginx.conf文件
标签:www makefile serve stream ast oca image png 测试
原文地址:https://www.cnblogs.com/dangjingwei/p/11324484.html