以gunzip這個模塊為例,講述一下,在nginx中如何安裝新的模塊
1、首先查看nginx已經(jīng)安裝了哪些模塊。
nginx –V
2、發(fā)現(xiàn)沒有gunzip模塊,安裝
進入nginx的安裝目錄中,不是nginx的軟件目錄。
在已有模塊種寫上要安裝的模塊,執(zhí)行下邊的命令
./configure \
--prefix=/usr/local/ywgh/nginx \
--http-client-body-temp-path=/tmp/clientbody \
--http-proxy-temp-path=/tmp/proxy \
--http-fastcgi-temp-path=/tmp/fastcgi \
--http-uwsgi-temp-path=/tmp/uwsgi \
--http-scgi-temp-path=/tmp/scgi \
--user=www \
--group=www \
--with-file-aio \
--with-http_realip_module \
--with-http_ssl_module \
--with-openssl=/usr/local/src/software/nginx/openssl \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-zlib=/usr/local/src/software/nginx/zlib \
--with-http_stub_status_module \
--with-pcre=/usr/local/src/software/nginx/pcre \
創(chuàng)新互聯(lián)建站專注于梅江網(wǎng)站建設服務及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供梅江營銷型網(wǎng)站建設,梅江網(wǎng)站制作、梅江網(wǎng)頁設計、梅江網(wǎng)站官網(wǎng)定制、重慶小程序開發(fā)服務,打造梅江網(wǎng)絡公司原創(chuàng)品牌,更為您提供梅江網(wǎng)站排名全網(wǎng)營銷落地服務。
3、然后編譯,覆蓋
直接make就行,不需要再make install了,如果要重新安裝就使用make install,就直接覆蓋了。
然后新產(chǎn)生的可執(zhí)行文件nginx在安裝目錄中的objs目錄下。
將objs目錄下的nginx 復制到軟件位置的nginx中。進行覆蓋就可以了。覆蓋的時候,需要先關閉nginx