您好,登錄后才能下訂單哦!
本文以nginx為例,為大家分析nginx為已安裝nginx動(dòng)態(tài)添加模塊的方法。閱讀完整文相信大家對(duì)nginx為已安裝nginx動(dòng)態(tài)添加模塊的方法有了一定的認(rèn)識(shí)。
這里以安裝第三方ngx_http_google_filter_module模塊為例
nginx的模塊是需要重新編譯nginx,而不是像apache一樣配置文件引用.so
cd /data/software/
git clone https://github.com/cuber/ngx_http_google_filter_module
將命令行切換到nginx執(zhí)行程序所在的目錄并輸入./nginx -V,具體如下:
[root@liuyazhuang121 sbin]# ./nginx -V
nginx version: nginx/1.9.3
built by gcc 4.4.7 20120313 (Red Hat 4.4.7-17) (GCC)
built with OpenSSL 1.0.2 22 Jan 2015
TLS SNI support enabled
configure arguments: --prefix=/usr/local/nginx-1.9.3 --with-openssl=/usr/local/src/openssl-1.0.2 --with-pcre=/usr/local/src/pcre-8.37 --with-zlib=/usr/local/src/zlib-1.2.8 --with-http_ssl_module
[root@liuyazhuang121 sbin]#
可以看出編譯安裝使用了--prefix=/usr/local/nginx-1.9.3 --with-openssl=/usr/local/src/openssl-1.0.2 --with-pcre=/usr/local/src/pcre-8.37 --with-zlib=/usr/local/src/zlib-1.2.8 --with-http_ssl_module這些參數(shù)。
這里添加-–add-module=/data/software/ngx_http_google_filter_module
具體如下:
復(fù)制代碼代碼如下:
./configure --prefix=/usr/local/nginx-1.9.3 --with-openssl=/usr/local/src/openssl-1.0.2 --with-pcre=/usr/local/src/pcre-8.37 --with-zlib=/usr/local/src/zlib-1.2.8 --with-http_ssl_module -–add-module=/data/software/ngx_http_google_filter_module
如上,將之前安裝Nginx的參數(shù)全部加上,最后添加-–add-module=/data/software/ngx_http_google_filter_module
之后,我們要進(jìn)行編譯操作,如下:
make //千萬(wàn)不要make install,不然就真的覆蓋
關(guān)于為nginx動(dòng)態(tài)添加模塊就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。