ps:埠改變檔案 安裝目錄的 ...(安裝目錄).../conf/nginx.comf中
1: ./configure --prefix=/usr/local/notifyserver/ --add-module=/usr/local/src/nginx_notifyserver_module
#-prefix=/usr/local/notifyserver/ 表示安裝路徑
在 /usr/local/src/nginx_notifyserver_module 中會有對應config檔案以及c檔案。
如:
#config
2:在安裝目錄中的 ..(安裝目錄).../obj/makfile中新增對應編譯**
如:
objs/addon/nginx_notifyserver_module/ngx_http_notifyserver_module.o \
objs/ngx_modules.o
...
objs/addon/nginx_notifyserver_module/ngx_http_notifyserver_module.o \
...
-lpthread -lcrypt -lnotifyserver -lpcre -lcrypto -lcrypto -lz# 新增.c檔案依賴的庫
...
objs/addon/nginx_notifyserver_module/ngx_http_notifyserver_module.o: $(addon_deps) \
make install(如果是已經安裝的,則去掉make install)
總結:順序上應該是先make,在./configure
nginx 新增 模組
title nginx 新增 模組 date 2019 10 31 11 21 46 categories tags config nginx 說明 已經安裝好的nginx,需要新增乙個未被編譯安裝的模組 以nginx rtmp module模組為例 則需要重新編譯nginx,而不是像apache一...
Nginx 新增模組
原已經安裝好的 nginx,現在需要新增乙個未被編譯安裝的模組 nginx v 可以檢視原來編譯時都帶了哪些引數 usr local nginx sbin nginx v 原來的引數 新增的引數 步驟如下 可以通過官方檢視模組安裝例子 1.使用引數重新配置 2.編譯 make 不要 make ins...
Nginx 動態新增模組
nginx模組依賴 nginx的一些模組需要第三方支援,例如gzip模組需要zlib庫,rewrite模組需要pcre庫,ssl功能需要openssl庫。根據需求新增不同模組 例新增echo模組 詳情請看 當前nginx版本為 1.12.2,選擇echo版本為0.61 8.1.1.修改nginx.c...