nginx 技巧

默认, nginx 具有 1024 限制


除了令 daemon 用户 打开文件最大限制 -> limits.conf 以外


nginx.conf  需要打开最大进程文件并发量

worker_rlimit_nofile 20000;


php 支持中

具有下面两种方法

fastcgi_pass unix:/var/run/php.socket

fastcgi_pass http://127.0.0.1:9000

你可能感兴趣的:(nginx,PHP,unix)