#user nobody;
#開啟程序數 <=cpu數
worker_processes 1;
#錯誤日誌儲存位置
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#程序號儲存檔案
#pid logs/nginx.pid;
#每個程序最大連線數(最大連線=連線數x程序數)每個worker允許同時產生多少個鏈結,預設1024
#} #配置虛擬主機,基於網域名稱、ip和埠
server
#配置反向**tomcat伺服器:攔截.jsp結尾的請求轉向到tomcat
#location ~ \.jsp$
#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
}#虛擬主機配置:
#}#配置訪問日誌
nginx配置檔案說明
定義nginx執行的使用者和使用者組 user nobody nginx程序數,建議設定為等於cpu總核心數。worker processes 4 log檔案位址 error log logs error.log 全域性錯誤日誌定義型別,debug info notice warn error cr...
Nginx配置檔案說明
原文 nginx配置檔案nginx.conf中文詳解 定義nginx執行的使用者和使用者組 user www www nginx程序數,建議設定為等於cpu總核心數。worker processes 8 全域性錯誤日誌定義型別,debug info notice warn error crit er...
Nginx配置檔案說明
我的部落格關於nginx的內容位址為 user nobody 執行使用者 worker processes 1 啟動程序,通常設定成和cpu的數量相等 error log logs error.log 全域性錯誤日誌 error log logs error.log notice 全域性錯誤日誌 e...