爲何要用unix:/tmp/php-cgi.sock,最主要的特徵就是unix socket比tcp快,當網站流量大的時候,服務器的優化是分毫必爭的.php
當咱們用php-fpm來管理咱們的php啓動時,按照以下的配置,就會自動生成/tmp/php-cgi.sock。在php-fpm.conf文件中設置nginx
[www]服務器
listen = /tmp/php-cgi.socksocket
修改nginx.conf爲:tcp
# fastcgi_pass 127.0.0.1:9000;php-fpm
fastcgi_pass unix:/tmp/php-cgi.sock;優化
重啓php-fpm和ngix網站