教你如何用 openresty 完美替換 nginx

大雄45發表於2019-12-15
導讀 本文教你如何用openresty完美替換nginx。

下載openresty

wget 
tar zxvf openresty-1.15.8.1.tar.gzcd openresty-1.15.8.1

安裝openresty

檢視當前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 ,在 下不用考慮這個問題。GNU,在Unix系統發明後,開始出現閉源收費軟體,於是有人發起了自由軟體的計劃,即GNU計劃,宣揚開源精神,編輯器Emacs和編譯器GCC就屬於GNU下的專案,但是GNU下缺少系統核心,後來機緣巧合地與 進行了合作,釋出了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版本及以後已經不需要使用ssl on命令了,可以去掉。

軟連結到bin目錄

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

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

原文來自: 

編輯:周曉雪,


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69955379/viewspace-2668697/,如需轉載,請註明出處,否則將追究法律責任。

相關文章