服務器
說明:
已經(jīng)安裝好的nginx,需要添加一個未被編譯安裝的模塊,需要怎么弄呢?
具體:
這里以安裝第三方ngx_http_google_filter_module模塊為例
nginx的模塊是需要重新編譯nginx,而不是像apache一樣配置文件引用.so
1. 下載第三方擴展模塊ngx_http_google_filter_module
# cd /data/software/# git clone https://github.com/cuber/ngx_http_google_filter_module2. 查看nginx編譯安裝時安裝了哪些模塊
# 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 enabledconfigure 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這些參數(shù)。–add-module=/data/software/ngx_http_substitutions_filter_module是之前編譯添加ngx_http_substitutions_filter_module模塊時添加
3. 加入需要安裝的模塊,重新編譯,如這里添加–add-module=/data/software/ngx_http_google_filter_module
# ./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二進制文件:
# cp /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx.bak# cp ./objs/nginx /usr/local/nginx/sbin/以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持西部數(shù)碼。