nginx第三方模組安裝方法
./configure --prefix=/你的安裝目錄 --add-module=/第三方模組目錄
比如echo模組。
沒安裝前,使用測試。
location /test
# sudo nginx -s reload
nginx: [emerg] unknown directive "echo" in /usr/local/nginx/conf/vhost/wounion.conf:26
說明並不能使用。
下面進行安裝,
先檢視已經有的模組。
# nginx -v
nginx version: nginx/1.12.2
built by gcc 5.4.0 20160609 (ubuntu 5.4.0-6ubuntu1~16.04.10)
built with openssl 1.0.2l 25 may 2017
tls sni support enabled
configure arguments: --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_v2_module --with-http_gzip_static_module --with-ipv6 --with-http_sub_module --with-openssl=/usr/local/lnmp1.4-full/src/openssl-1.0.2l --with-http_image_filter_module
wget
解壓
sudo tar -zxvf v0.61.tar.gz
編譯
sudo ./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_v2_module --with-http_gzip_static_module --with-ipv6 --with-http_sub_module --with-openssl=/usr/local/lnmp1.4-full/src/openssl-1.0.2l --with-http_image_filter_module --add-module=/usr/local/lnmp1.4-full/src/nginx-1.12.2/third_module/echo-nginx-module-0.61
安裝
sudo make
替換二級制檔案
sudo cp -f ./objs/nginx /usr/local/nginx/sbin/nginx
再次檢視包含模組
# nginx -v
nginx version: nginx/1.12.2
built by gcc 5.4.0 20160609 (ubuntu 5.4.0-6ubuntu1~16.04.10)
built with openssl 1.0.2l 25 may 2017
tls sni support enabled
configure arguments: --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_v2_module --with-http_gzip_static_module --with-ipv6 --with-http_sub_module --with-openssl=/usr/local/lnmp1.4-full/src/openssl-1.0.2l --with-http_image_filter_module --add-module=/usr/local/lnmp1.4-full/src/nginx-1.12.2/third_module/echo-nginx-module-0.61
再次重啟nginx試試echo模組。
sudo nginx -s reload
正常的,並沒有報錯。
# curl
test here
nginx安裝第三方模組
nginx正常安裝第三方模組的方式如下 configure prefix 你的安裝目錄 add module 第三方模組目錄在未安裝nginx的情況下,安裝第三方模組的方式如下 add module ngx pagespeed master add module 第三方模組目錄 make make ...
nginx 安裝第三方模組
nginx內部是由一些核心和非核心的第三方模組構成,模組化可以通過整合第三方模組實現擴充套件功能。核心模組 ngx http core module 標準模組 http模組 第三方模組 預設支援的模組 ngx http core module 模組 包括 nginx.conf 中的 http段中的 ...
nginx安裝第三方模組
nginx檔案非常小,但是效能非常的高效,這方面完勝apache,nginx檔案小的乙個原因之一是nginx自帶的功能相對較少,好在nginx允許第三方模組,第三方模組使得nginx越發的強大.在安裝模組方面,nginx顯得沒有apache安裝模組方便,當然也沒有php安裝擴充套件方便.在原生的ng...