当前位置: > Linux服务器 > nginx >

nginx php-fpm使用sock方式配置

时间:2015-01-13 23:06来源:linux.it.net.cn 作者:IT

我们大部分默认的nginx连接方式为php-cgi监听127.0.0.1:9000的方式,刚刚测试了使用socket方式连接,速度飞快啊!

nginx配置方法:

location ~ \.php$ { fastcgi_pass unix:/dev/shm/php-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /opt/www_data/code/public_html$fastcgi_script_name; include fastcgi_params; }

php-fpm配置方法:

<value name="listen_address">/dev/shm/php-fpm.sock</value

 

这里是降socket在内存中了,用来提高速度。

(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容