#wget http://nginx.org/download/nginx-1.15.8.tar.gz
#wget https://github.com/alibaba/nginx-http-concat/archive/master.zip -O nginx-http-concat-master.zip
# unzip nginx-http-concat-master.zip
# tar -xzvf nginx-1.15.8.tar.gz
# cd nginx-1.15.8
# ./configure --prefix=/chimy/nginx/nginx.1.15.8 --with-http_stub_status_module --with-http_ssl_module --with-http_realip_module --with-http_flv_module --with-http_mp4_module --with-http_gzip_static_module --with-stream --with-stream_ssl_module --add-module=../ngx_concat_module --add-module=../nginx-http-concat-master
#make
#mak install
说: --prefix 指定安装路径 --add-module 指定添加 模块的路径,主要针对我们自己添加的库 ,--with-xxxx 用的nginx自带的库,
参:https://www.cnblogs.com/tippoint/p/4775982.html
part2:
配置nginx 反向 tomysql:
在conf建 upstreams 目录 ,在里面专写这类代理,
在conf建 httpconf 目录 ,在里面专门针对http类代理。
nginx.conf的关键如下:
http { include httpconf /*.conf;
}
stream {
include upstreams/*.conf;
}