#使用的用户和组 user www www; #指定工作衍生进程数(一般等于CPU的总核数或总核数的两倍) worker_processes 8; #指定错误日志存放的路径,错误日志的记录级别可为debug,info,notice,warn,error,crit error_log error.log crit; #指定pid文件存放的路径 pid nginx.pid; #指定文件描述符的数量 worker_rlimit_nofile 51200; events{ #使用的I/O模型,Linux…