下面是php 5.3以上版本将TCP改成socket方式的配置方法: 修改php-fpm.conf(/usr/local/php/etc/php-fpm.conf);listen = 127.0.0.1:9000 listen = /dev/shm/php-cgi.sock修改nginx配置文件server段的配置,将http的方式改为socket方式location ~ [^/]\.php(/|$) { #fastcgi_pass 127.0.0.1:9000; fastcgi_pass unix:/dev/shm/php-cgi.sock; fastcgi_index index.php; include fastcgi.conf; }重启php-fpm与nginxservice nginx restart service php-fpm restart ls -al /dev/shm可以看到php-cgi.sock文件unix套接字类型
查看原文:http://newmiracle.cn/?p=888
使用socket方式连接Nginx优化php-fpm性能
最新推荐文章于 2021-03-26 20:17:36 发布