1. 程式人生 > >Nginx核心模塊

Nginx核心模塊

等級 war null style oca hosts 服務 大連 定向

error_log

語法:error_log file [ debug | info | notice | warn | error | crit ]
默認值:${prefix}/logs/error.log
指定Nginx服務(與FastCGI)錯誤日誌文件位置。
每個字段的錯誤日誌等級默認值:

1.main字段-error,2.HTTP字段-crit,3.server字段-crit

關閉日誌功能:error_log /dev/null crit;

include

語法:include file | *
默認值:none
你可以包含一些其他的配置文件來完成你想要的功能。
0.4.4版本以後,include指令已經能夠支持文件通配符:

include vhosts/*.conf

註意:文件的相對路徑是根據nginx.conf所在目錄決定

try_file

location / {
try_files $uri $uri/ @drupal;
}

以項目根路徑$document_root為根目錄,判斷$document_root/$uri,$document_root/$uri/是否存在,不存在則重定向至@drupal

worker_processes

理論最大連接數(max_clients) = worker_processes * worker_connections

反向代理最大連接數(max_clients) = worker_processes * worker_connections/4

Nginx核心模塊