nginx 每秒万级并发优化

socket
nginx 1.http连接快速关闭 keep_alivetime:0
2.子进程允许打开的连接 work_connections 10240;
系统 1.最大连接数 somaxconn
2.加快tcp连接的回收 tcp_tw_recycle 1
3.空tcp允许回收利用 tcp_tw_reuse 1
4.洪水攻击 不做洪水地域 tcp_syncookies 0
文件
nginx 子进程允许打开的文件 worker_limit_nofile
系统 ulimit -n 设置一个较大值 例如 ulimit -n 20000

你可能感兴趣的:(nginx)