nginx 編譯新模組

2021-10-05 07:14:49 字數 418 閱讀 2874

nginx 安裝好後如果想要新增新模組,並不像 php 那樣直接編譯,然後在配置檔案裡直接引入那麼簡單,nginx 需要重新編譯。下面介紹如何新增。

以 http_sub_module 為例

./configure 之前的引數 --with-http_ sub_module

make

service nginx stop

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

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

service nginx start

enjoy it !

如果覺得文章對你有用,可以贊助我喝杯咖啡~

Nginx 已編譯的nginx 新增新模組

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

Nginx已編譯的nginx 新增新模組

1.檢視已有模組 1 usr local nginx sbin nginx v 此處我是安裝了配置ssl 想在此加上fastdfs模組 將紅色的地方複製出來記到乙個小本本上 2.重新編譯nginx 在此位置重新執行上面的 configure prefix usr local nginx with h...

nginx重新編譯新增新模組

tar xvzf nginx 1.3.2.tar.gz 檢視ngixn版本極其編譯引數 usr local nginx sbin nginx v 進入nginx原始碼目錄 cd nginx 1.3.2 以下是重新編譯的 和模組 make 千萬別make install,否則就覆蓋安裝了 make完之...