首頁 > 後端開發 > php教程 > Nginx之為已安裝nginx動態新增模組的方法_nginx

Nginx之為已安裝nginx動態新增模組的方法_nginx

不言
發布: 2023-03-23 06:24:01
原創
2050 人瀏覽過

本篇文章主要介紹了Nginx之為已安裝nginx動態添加模組的方法,小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟著小編過來看看吧

說明:

已經安裝好的nginx,需要加入一個未被編譯安裝的模組,需要怎麼弄呢?

具體:

這裡以安裝第三方ngx_http_google_filter_module模組為例

nginx的模組是需要重新編譯nginx,而不是像apache一樣設定檔引用.so

1. 下載第三方擴充模組ngx_http_google_filter_module

##

# cd /data/software/
# git clone https://github.com/cuber/ngx_http_google_filter_module
登入後複製

#2. 查看nginx編譯安裝時安裝了哪些模組

# nginx -V
nginx version: nginx/1.8.0
built by gcc 4.4.7 20120313 (Red Hat 4.4.7-11) (GCC) 
built with OpenSSL 1.0.1e-fips 11 Feb 2013
TLS SNI support enabled
configure arguments: --prefix=/usr/local/nginx --with-http_ssl_module --with-http_sub_module --with-http_gzip_static_module --with-http_stub_status_module --add-module=/data/software/ngx_http_substitutions_filter_module
登入後複製

可以看出編譯安裝使用了--prefix=/usr/local/nginx --with-http_ssl_module -- with-http_sub_module --with-http_gzip_static_module --with-http_stub_status_module --add-module=/data/software/ngx_http_substitutions_filter_module這些參數。 --add-module=/data/software/ngx_http_substitutions_filter_module是之前編譯ngx_http_substitutions_filter_module模組時加入


3. 加入需要安裝的模組,重新編譯,如這裡加–add-module=/data /software/ngx_http_google_filter_module

# ./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-http_sub_module --with-http_gzip_static_module --with-http_stub_status_module --add-module=/data/software/ngx_http_substitutions_filter_module --add-module=/data/software/ngx_http_google_filter_module
# make  //千万不要make install,不然就真的覆盖了
登入後複製

4. 取代nginx二進位檔案:

#

# cp /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx.bak
# cp ./objs/nginx /usr/local/nginx/sbin/
登入後複製

相關推薦:


nginx相關知識點總結分享

#nginx反向代理機制解決前端跨域問題


########################################## ##########################

以上是Nginx之為已安裝nginx動態新增模組的方法_nginx的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板