新增新的nginx模組

2021-08-24 20:44:50 字數 1541 閱讀 7490

說明:

已經安裝好的nginx,需要新增乙個未被編譯安裝的模組,需要怎麼弄呢?

具體:

# cd /data/software/

# git clone

2. 檢視nginx編譯安裝時安裝了哪些模組

可以看出編譯安裝使用了--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

# make //千萬不要make install,不然就真的覆蓋了

4. 替換nginx二進位制檔案:

# cp /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx.bak

# cp ./objs/nginx /usr/local/nginx/sbin/

objs平時是沒有的,只有新增的時候才有的

nginx新增新模組

git clone 2.放入指定位置 mv echo nginx module master usr local src nginx 1.8.1 echo nginx module 3.檢視已編譯引數 usr local nginx sbin nginx v 結果為 4.重新編譯 ps 這裡只需要m...

nginx新增新模組

git clone 2.放入指定位置 mv echo nginx module master usr local src nginx 1.8.1 echo nginx module 3.檢視已編譯引數 usr local nginx sbin nginx v 結果為 4.重新編譯 ps 這裡只需要m...

Nginx 已編譯的nginx 新增新模組

usr local nginx sbin nginx v此處我是安裝了配置ssl 想在此加上fastdfs模組將紅色的地方複製出來記到乙個小本本上 在此位置重新執行上面的 configure prefix usr local nginx with http stub status module wi...