已安裝nginx動態添加模塊

說明:
已經安裝好的nginx,須要添加一個未被編譯安裝的模塊,須要怎麼弄呢?nginx

具體:
這裏以安裝第三方ngx_http_google_filter_module模塊爲例
nginx的模塊是須要從新編譯nginx,而不是像apache同樣配置文件引用.so
1. 下載第三方擴展模塊ngx_http_google_filter_modulegit

# cd /data/software/# git clone https://github.com/cuber/ngx_http_google_filter_module

 
2. 查看nginx編譯安裝時安裝了哪些模塊github

# nginx -Vnginx version: nginx/1.8.0built by gcc 4.4.7 20120313 (Red Hat 4.4.7-11) (GCC) built with OpenSSL 1.0.1e-fips 11 Feb 2013TLS SNI support enabled
configure arguments: --prefix=/usr/local/nginx --with-http_ssl_module --with-http_sub_module --with-http_gzip_static_module --with-http_stub_status_module --add-module=/data/software/ngx_http_substitutions_filter_module能夠看出編譯安裝使用了--prefix=/usr/local/nginx --with-http_ssl_module --with-http_sub_module --with-http_gzip_static_module --with-http_stub_status_module --add-module=/data/software/ngx_http_substitutions_filter_module這些參數。--add-module=/data/software/ngx_http_substitutions_filter_module是以前編譯添加ngx_http_substitutions_filter_module模塊時添加

 
3. 加入須要安裝的模塊,從新編譯,如這裏添加–add-module=/data/software/ngx_http_google_filter_moduleapache

# ./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-http_sub_module --with-http_gzip_static_module --with-http_stub_status_module --add-module=/data/software/ngx_http_substitutions_filter_module --add-module=/data/software/ngx_http_google_filter_module# make    //千萬不要make install,否則就真的覆蓋了

 
4. 替換nginx二進制文件:ide

# cp /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx.bak# cp ./objs/nginx /usr/local/nginx/sbin/
相關文章
相關標籤/搜索