博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx 1.15.8
阅读量:5764 次
发布时间:2019-06-18

本文共 945 字,大约阅读时间需要 3 分钟。

hot3.png

#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;

}

 

转载于:https://my.oschina.net/u/2553994/blog/3004257

你可能感兴趣的文章
[雪峰磁针石博客]虚拟现实与增强现实VR&AR工具书籍汇总下载(持续更新)
查看>>
【对讲机的那点事】手把手教你给摩托罗拉C1200数字对讲机写频
查看>>
JWT基本简介以及实例展示
查看>>
SourceTree 教程文档(进阶知识)
查看>>
Java并发编程之线程安全、线程通信
查看>>
WPF 异步加载高清大图
查看>>
基因组survey
查看>>
单链表C++
查看>>
WEBGL学习【十三】鼠标点击立方体改变颜色的原理与实现
查看>>
Node.js 11.14.0 发布,服务器端的 JavaScript 运行环境
查看>>
适配最新iPhone9、iPhoneXs提醒事项备忘录APP
查看>>
SOFABoot 3.1.2 发布,蚂蚁金服开源研发框架
查看>>
Signalling entropy: A novel network-theoretical fram
查看>>
几种常见的限流算法
查看>>
使用DataGrip连接SQL Server 2017数据库
查看>>
[剑指offer] 和为S的连续正数序列
查看>>
C#和windows系统哪些事
查看>>
Kubernetes 学习笔记(三)--- 资源清单定义入门
查看>>
Centos7主机名莫名其妙变成了bogon
查看>>
12.1、python内置函数——eval、exec、compile
查看>>