
1 cevincheung 2014 年 11 月 20 日 nginx一般安装只需要指定prefix和几个常用模块即可。编译好的nginx再安装第三方模块需要重新编译nginx,这个可以使用tengine的dso解决。 ./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_gzip_static_module 添加第三方模块 --add-module=/data4/download/nginx_other_module 完毕。 |
2 kungs 2014 年 11 月 20 日 http://kungs.github.io/linux/2013/4/5/recompile-nginx/ 在已安装的nginx里加入第三方模块。 |
3 HiV2EX OP @cevincheung thx~ |