溫馨提示×

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

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

在已經(jīng)安裝好的Nginx上增加新模塊

發(fā)布時(shí)間:2020-07-29 00:41:27 來(lái)源:網(wǎng)絡(luò) 閱讀:251 作者:知行知行 欄目:系統(tǒng)運(yùn)維

在現(xiàn)有的web服務(wù)器上增加新的模塊實(shí)現(xiàn)更為豐富的功能,Nginx算是比較常用的web服務(wù)器, nginx不僅僅可以做web服務(wù)器,只要安裝對(duì)應(yīng)的插件還可作反向代理、即時(shí)通訊、文件下載、流媒體服務(wù)等功能,有時(shí)候我們已經(jīng)安裝好了Nginx,改變用途或者發(fā)現(xiàn)缺少用到?jīng)]有安裝的模塊,可是我們又不想重新安裝覆蓋已經(jīng)安裝的nginx,我們?cè)撊绾涡略瞿K呢?下面通過(guò)安裝--with-mail_ssl_module作為示例進(jìn)行說(shuō)明,安裝其他模塊也是同樣的道理。
1、 當(dāng)前nginx:
/usr/local/nginx-1.6.3/sbin/nginx –V
configure arguments: --prefix=/usr/local/nginx-1.6.3 --with-http_ssl_module --with-http_spdy_module --with-http_stub_status_module --with-pcre --with-http_realip_module --add-module=/root/ngx_cache_purge-1.3
2、 安裝:
解壓相同版本的nginx源碼包(以前安裝時(shí)的源碼包)
tar zxf nginx-1.6.3.tar.gz
cd nginx-1.6.3
./configure (原來(lái)的參數(shù)) --prefix=/usr/local/nginx-1.6.3 --with-http_ssl_module --with-http_spdy_module --with-http_stub_status_module --with-pcre --with-http_realip_module --add-module=/root/ngx_cache_purge-1.3 --with-mail_ssl_module
編譯:make
但是不要make install,這樣會(huì)覆蓋原程序。
mv /usr/local/nginx-1.6.3/sbin/nginx /usr/local/nginx-1.6.3/sbin/nginx_bak
cp objs/nginx /usr/local/nginx-1.6.3/sbin/
3、 驗(yàn)證,查看一下nginx的模塊情況
/usr/local/nginx-1.6.3/sbin/nginx –V
configure arguments: --prefix=/usr/local/nginx-1.6.3 --with-http_ssl_module --with-http_spdy_module --with-http_stub_status_module --with-pcre --with-http_realip_module --add-module=/root/ngx_cache_purge-1.3 --with-mail_ssl_module

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

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎ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)容。

AI