本文小编就为大家带来一篇讲到openresty自己编译nginx,openresty手动添加nginx编译参数。小编觉得挺不错的,现在就分享给大家,如果你在找openresty nginx http_geoip_module,openresty nginx http_realip_module,openresty nginx http2,也可以做个参考。一起跟随小编过来看看吧。
openresty自己编译nginx,openresty手动添加nginx编译参数
作者:小程序分析员 发布时间:2020-03-24
安装openresty时,
如果使用./configure,
然后编译安装,
openresty会编译nginx的默认选项。
但是在实际生产中,
会结合自己的业务,
添加nginx的编译参数,
或者新增第三方模块,
比如
--with-http_v2_module
增加对 http2 的支持
--with-http_realip_module
获取客户端真实IP
--with-http_geoip_module
获取IP对应的国家,城市
这里就需要手动添加nginx编译参数。
使用的方法就是
在安装openresty ./configure 时,
把nginx参数增加进去即可,
./configure \
--with-http_v2_module \
--with-http_realip_module \
--with-http_geoip_module
openresty会在nginx默认参数的基础上,
把你新增的nginx参数,
编译进去。
需要注意的是,
不管是安装还是openresty nginx升级
不是你自己到openresty nginx源码包路径去安装,
而是在openresty的源码路径安装,
否则会报很多错误。
猛击这里,
观看子恒老师《微信开发》系列视频
了解实现过程和下载相关源代码
声明:部分文章或图片未能及时与原作者取得联系,若来源标注错误或侵犯到您的权益烦请告知QQ:2334512685,我们会及时删除。
发布:秦子恒博客,欢迎转载分享,请保留出处。
openresty自己编译nginx,openresty手动添加nginx编译参数链接:https://www.qinziheng.com/details/8950/
openresty自己编译nginx,openresty手动添加nginx编译参数相关文章