nginx 负载均衡配置文件 (注意在使用该文件的时候要备份)
worker_processes 8;
worker_cpu_affinity 00000001 00000010 00000100 00001000 00010000 00100000 01000000 10000000;
worker_rlimit_nofile 409600;
events {
use epoll;
worker_connections 204800;
}
http {
include mime.types;
default_type application/octet-stream;[......]