配置fastcgi与PHP-fpm通信配置

  server{

        listen 80;

        root /wwwweb/projects/crm

        index index.html index.htm index.php

        location / {

                try_files $uri $uri/ /index.php

        }

        location ~\.php${

            fastcgi_split_path_info ^(.+\.php)(/.+)$; //nginx默认不能接受path_info的值

            fastcgi_index index //设置地址栏以“/”结尾的地址 

            include fastcgi_parames //设置一个传递给FastCGI服务的参数,可以是文本或者是变量。

            fastcgi_pass unix:/var/run/php5-fpm.sock //设置sockt为通信方式

        }

}

你可能感兴趣的:(web,技术,nginx,php,web)