溫馨提示×

溫馨提示×

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

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

教你如何用 openresty 完美替換 nginx

發(fā)布時間:2020-08-08 14:09:16 來源:ITPUB博客 閱讀:275 作者:大雄45 欄目:建站服務(wù)器
導(dǎo)讀 本文教你如何用openresty完美替換nginx。
下載openresty
wget https://openresty.org/download/openresty-1.15.8.1.tar.gz
tar zxvf openresty-1.15.8.1.tar.gzcd openresty-1.15.8.1
安裝openresty

查看當(dāng)前nginx的編譯配置

nginx -V

如下所示,"configure arguments"就是編譯nginx時的配置

nginx version: nginx/1.14.0built by gcc 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) 
built with OpenSSL 1.0.2k-fips  26 Jan 2017TLS SNI support enabled
configure arguments: --with-http_ssl_module

編譯openresty,把剛才的配置加到"configure" 命令后方,如果需要使用lua也可以加上"--with-luajit"

./configure --with-http_ssl_module --with-luajit
gmake && gmake install

gmake即GNU make,使用它的原因是非GNU平臺可能占用了make 命令,在 linux系統(tǒng)下不用考慮這個問題。GNU,在Unix系統(tǒng)發(fā)明后,開始出現(xiàn)閉源收費軟件,于是有人發(fā)起了自由軟件的計劃,即GNU計劃,宣揚開源精神,編輯器Emacs和編譯器GCC就屬于GNU下的項目,但是GNU下缺少系統(tǒng)內(nèi)核,后來機緣巧合地與 Linux進(jìn)行了合作,發(fā)布了GNU/Linux。

更換配置文件

把原有nginx配置文件移動到openresty目錄

mv /usr/local/nginx/conf/*.conf /usr/local/openresty/conf
mv /usr/local/nginx/conf/conf.d /usr/local/openresty/conf
停止原nginx
nginx -s stop
啟動openresty
/usr/local/openresty/bin/openresty

如果提示"nginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl"",原因是nginx1.15版本及以后已經(jīng)不需要使用ssl on命令了,可以去掉。

軟鏈接到bin目錄

如果覺得命令使用不方便可以直接軟鏈接到bin目錄,并改名為nginx

ln -s /usr/local/openresty/bin/openresty /usr/local/bin/nginx

原文來自:  https://www.linuxprobe.com/openresty-nginx.html

編輯:周曉雪,

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

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

AI