幫助文檔:html
http://nginx.org/en/docs/ngx_core_module.html
nginx
user:指定worker進程的運行身份,如組不指定,默認和用戶名同名緩存
pid /PATH/TO/PID_FILE:指定存儲nginx主進程PID的文件路徑bash
include file|mask:指明包含進來的其它配置文件片段服務器
load_module file:併發
模塊加載配置文件:/usr/share/nginx/modules/*.conf性能
指明要裝載的動態模塊路徑:/usr/lib64/nginx/modules/*.so優化
worker_processes number | auto:worker進程的數量;一般應該爲當前主機的cpu的物理核心數debug
worker_cpu_affinity cpumask ...:將worker進程綁定到指定CPU上,提升緩存命中率調試
cpumask: 00000001:0號CPU 00000010:1號CPU 10000000:8號CPU worker_cpu_affinity 0001 0010 0100 1000; 分別將worker進程綁定到1,2,3,4號CPU上
worker_priority number:指定worker進程的nice值,設定worker進程優先級:[-20-19]
worker_rlimit_nofile number:worker進程所可以打開的文件數量上限
events { worker_connections 1024; }