1. 程式人生 > >nginx安裝編譯,動態新增模組及其各模組的作用

nginx安裝編譯,動態新增模組及其各模組的作用

nginx第三方模組下載地址:

nginx地址下載:

nginx版本號:1.8.1

./configure  \                                                                                                                             
    --user=nginx \
    --group=nginx \
    --prefix=/usr/local/myinstall/nginx \
    --error-log-path=/var/log/nginx/error.log \
    --http-log-path=/var/log/nginx/access.log \
    --sbin-path=/usr/sbin/nginx \
    --conf-path=/etc/nginx/nginx.conf \
    --pid-path=/var/run/nginx.pid \
    --lock-path=/var/lock/subsys/nginx \
    --with-http_random_index_module \  #從目錄中隨機選出一個檔案作為主頁
    --with-http_ssl_module \ #提供https支援
    --with-http_realip_module \ #允許修改請求頭客戶端的ip地址(X-Real-IP和X-Forwarded-For)

    --with-http_addition_module \ #在客戶端請求的檔案的開頭或者結尾新增額外的內容
    --with-http_sub_module \ #在客戶端請求的檔案,把某些字串替換
    --with-http_dav_module \ #擴充套件了http協議
    --with-http_flv_module \  #搭建flv視訊伺服器使用的
    --with-http_gzip_static_module \
    --with-http_geoip_module \
    --add-module=/usr/local/src/nginx/nginx-3rd/nginx-module-url \
    --add-module=/usr/local/src/nginx/nginx-3rd/ngx_http_consistent_hash \
    --add-module=/usr/local/src/nginx/nginx-3rd/nginx-upstream-fair \
    --add-module=/usr/local/src/nginx/nginx-3rd/ngx_cache_purge

其中可能報錯誤,pcre library找不到,下載pcre-devel就可以了

還可能報錯誤,geoip library找不到,下載geoip-devel就可以了,這個rpm包有可能yum下載找不到,

則需要配置epel源 ,如下

這樣源就配置好了