CentOS系統Nginx安裝配置,隨時更新

./configure --prefix=/etc/nginx \  #指定安裝目錄
--sbin-path=/usr/sbin/nginx \  #指定執行路徑
--conf-path=/etc/nginx/nginx.conf \  #指定配置文件路徑
--error-log-path=/var/log/nginx/error.log \  #指定錯誤日誌路徑
--http-log-path=/var/log/nginx/access.log \  #指定訪問日誌路徑
--pid-path=/var/run/nginx.pid \  #指定默認pid號文件路徑
--lock-path=/var/run/nginx.lock \  #指定文件鎖
--http-client-body-temp-path=/var/cache/nginx/client_temp \  #指定客戶端訪問時產生的臨時文件存放目錄
--http-proxy-temp-path=/var/cache/nginx/proxy_temp \  #指定存儲承載從代理服務器接收到的數據的臨時文件定義目錄
--http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \  #指定fastcgi臨時文件路徑
--http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp \  #指定uwsgi臨時文件路徑
--http-scgi-temp-path=/var/cache/nginx/scgi_temp \  #指定scgi臨時文件路徑
--user=nginx \  #指定系統用戶名稱
--group=nginx \  #指定系統用戶組
--with-http_ssl_module \  #安裝http_ssl模塊,通常用於支持https
--with-http_realip_module \  #安裝獲取真實IP模塊
--with-http_addition_module \  #安裝響應追加模塊
--with-http_sub_module \  #安裝替換網站響應內容模塊
--with-http_dav_module \  #安裝爲Http webDAV 增長 PUT, DELETE, MKCOL, COPY 和 MOVE 等方法的模塊
--with-http_flv_module \  #安裝提供服務端僞流媒體支持模塊
--with-http_mp4_module \  #安裝提供服務端MP4流媒體支持
--with-http_gunzip_module \  #安裝支持gunzip解碼方法的模塊
--with-http_gzip_static_module \  #安裝支持gzip解碼方法的模塊
--with-http_random_index_module \  #安裝顯示隨機首頁模塊
--with-http_secure_link_module \  #安裝安全(私密)下載模塊
--with-http_stub_status_module \  #安裝監控nginx運行狀態模塊
--with-http_auth_request_module \  #安裝內部子請求的訪問和控制模塊
--with-threads \  #安裝線程池模塊
--with-stream \   #安裝四層協議的轉發、代理或者負載均衡模塊
--with-stream_ssl_module \  #安裝四層協議的轉發、代理或者負載均衡支持https模塊
--with-mail \  #安裝郵件模塊
--with-mail_ssl_module \  #安裝郵件支持https模塊
--with-file-aio \  #安裝aio模塊 (咱也不知道是幹啥的)
-with-http_image_filter_module #安裝支持圖片傳輸模塊
--with-ipv6 \  #安裝支持IPV6模塊
--with-http_spdy_module \  #安裝spdy網絡優化模塊 版本高於1.9.5使用--with-http_v2_module--with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic'  #CC編譯器配置
相關文章
相關標籤/搜索