码迷,mamicode.com
首页 > 其他好文 > 详细

nginx添加模块

时间:2018-08-09 14:02:57      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:添加   bin   nts   install   参数   figure   mod   没有   hat   

[root@VM_0_3_centos nginx]# ./sbin/nginx -V
nginx version: nginx/1.12.2
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-28) (GCC) 
configure arguments: --prefix=/app/nginx-1.12.2
#-V参数查看版本和编译参数
#已运行的nginx没有模块,现在要添加模块

  

 ./configure  --prefix=/app/nginx-1.12.2  --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module
make
cp nginx nginx.bak
cp /data/nginx-1.12.2/objs/nginx ./sbin/nginx
#这是只添加自带模块
#带参数重新编译
#然后make,生产执行文件,但不要make install
#备份原nginx执行文件
#把新生成的nginx文件复制过去

  

[root@VM_0_3_centos nginx]# ./sbin/nginx -V
nginx version: nginx/1.12.2
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-28) (GCC) 
built with OpenSSL 1.0.2k-fips  26 Jan 2017
TLS SNI support enabled
configure arguments: --prefix=/app/nginx-1.12.2 --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module
#现在查看已经改变

  

  

nginx添加模块

标签:添加   bin   nts   install   参数   figure   mod   没有   hat   

原文地址:https://www.cnblogs.com/jabbok/p/9447954.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!