溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

nginx增加新模塊

發(fā)布時(shí)間:2020-02-29 19:02:36 來源:網(wǎng)絡(luò) 閱讀:408 作者:only玄武 欄目:建站服務(wù)器

以gunzip這個(gè)模塊為例,講述一下,在nginx中如何安裝新的模塊
1、首先查看nginx已經(jīng)安裝了哪些模塊。
nginx –V
nginx增加新模塊
2、發(fā)現(xiàn)沒有g(shù)unzip模塊,安裝
進(jìn)入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 \

3、然后編譯,覆蓋
直接make就行,不需要再make install了,如果要重新安裝就使用make install,就直接覆蓋了。
nginx增加新模塊
然后新產(chǎn)生的可執(zhí)行文件nginx在安裝目錄中的objs目錄下。
將objs目錄下的nginx 復(fù)制到軟件位置的nginx中。進(jìn)行覆蓋就可以了。覆蓋的時(shí)候,需要先關(guān)閉nginx

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI