###定義nginx執行的使用者各使用者組
user nginx nginx;
###nginx程序數,建議設定與cpu核心數一致
worker_processes 1;
###全域性錯誤日誌定義型別[ debug | info | notice | warn | error | crit ]
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
###乙個nginx程序開啟的最多檔案描述符數目,理論值應該是最多開啟檔案數(系統的值ulimit -n)與nginx程序數相除,但是nginx分配請求並不均勻,所以建議與ulimit -n的值保持一致。
worker_rlimit_nofile 65535;
###程序檔案
#pid logs/nginx.pid;
###工作模式與連線數上限
events
###設定http伺服器
###虛擬主機配置
server
###快取時間設定
###js和css快取時間設定
location ~.*.(js|css)?$
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#error_page 500 502 503 504 /50x.html;
location = /50x.html
# proxy the php scripts to apache listening on 127.0.0.1:80
##location ~ \.php$
# pass the php scripts to fastcgi server listening on 127.0.0.1:9000
##location ~ \.php$
# deny access to .htaccess files, if apache's document root
# concurs with nginx's one
##location ~ /\.ht
###對 "/" 啟用反向**
location /
###設定檢視nginx狀態的位址
location /nginxstatus
###本地動靜分離反向**配置
#所有jsp的頁面均交由tomcat或resin處理
location ~ .(jsp|jspx|do)?$
###所有靜態檔案由nginx直接讀取不經過tomcat或resin
nginx配置檔案詳解
nginx engine x 是乙個高效能的 http 和 反向 伺服器,也是乙個 imap pop3 smtp 伺服器。nginx 是由 igor sysoev 為俄羅斯訪問量第二的 rambler.ru 站點開發的,它已經在該站點執行超過兩年半了。igor 將源 以類bsd許可證的形式發布。ng...
nginx配置檔案詳解
定義nginx執行的使用者和使用者組 user www www nginx程序數,建議設定為等於cpu總核心數。worker processes 8 全域性錯誤日誌定義型別,debug info notice warn error crit error log ar loginx error.log...
Nginx 配置檔案詳解
1 安裝nginx 在安裝nginx之前,需確保系統已經安裝了gcc openssl devel pcre devel和zlib devel軟體庫。下面是nginx安裝過程 2 nginx的配置檔案結構 nginx的配置檔案nginx.conf位於其安裝目錄的conf目錄下。nginx.conf由多...