#定義nginx執行的使用者和使用者組
user www www;
#設定nginx程序數,一般設定為cpu核心數,auto為自動檢測
worker_processes auto;
#全域性錯誤日誌定義型別,[ debug | info | notice | warn | error | crit ]
error_log logs/error.log;
error_log logs/error.log notice;
error_log logs/error.log info;
#守護程序pid檔案
pid logs/nginx.pid;
#events模組中包含nginx中所有處理連線的設定
events
#http模組控制著nginx http處理的所有核心特性
#快取location ~ .*.(gif|jpg|jpeg|png|bmp|swf|js|css)$
#**偽靜態
location /
#nginx解析php指令碼
location ~ .php$
}
nginx配置檔案
執行使用者 user nobody nobody 啟動程序 worker processes 2 全域性錯誤日誌及pid文件 error log logs error.log notice pid logs nginx.pid 工作模式及連線數上限 events 設定http伺服器,利用他的反向 功...
nginx 配置檔案
ps nginx使用有兩三年了,現在經常碰到有新使用者問一些很基本的問題,我也沒時間一一回答,今天下午花了點時間,結合自己的使用經驗,把nginx的主要配置引數說明分享一下,也參考了一些網路的內容,這篇是目前最完整的nginx配置引數中文說明了。更詳細的模組引數請參考 定義nginx執行的使用者和使...
Nginx 配置檔案
2 配置詳解 3 配置備份 nginx 配置檔案主要分為六個區域 nginx worker 程序的執行使用者以及使用者組,預設由 nobody 賬號執行。user nobody nginx 要開啟的子程序數。每個 nginx 程序平均耗費 10m 12m 記憶體,一般指定 1 個程序就足夠了。若是多...