8、创建php-fpm配置文件(php-fpm是为PHP打的一个FastCGI管理补丁,可以平滑变更php.ini配置而无需重启php-cgi):
  在/usr/local/webserver/php/etc/目录中创建php-fpm.conf文件:
rm -f /usr/local/webserver/php/etc/php-fpm.conf
vi /usr/local/webserver/php/etc/php-fpm.conf

   输入以下内容(如果您安装 Nginx + PHP 用于程序调试,请将以下的0改为1,以便显示PHP错误信息,否则,Nginx 会报状态为500的空白错误页):
view plainprint?
   1.  
   2.  
   3.  
   4.         All relative paths in this config are relative to php's install prefix 
   5.  
   6.        
 
   7.  
   8.                 Pid file 
   9.                 /usr/local/webserver/php/logs/php-fpm.pid 
  10.  
  11.                 Error log file 
  12.                 /usr/local/webserver/php/logs/php-fpm.log 
  13.  
  14.                 Log level 
  15.                 notice 
  16.  
  17.                 When this amount of php processes exited with SIGSEGV or SIGBUS ... 
  18.                 10 
  19.  
  20.                 ... in a less than this interval of time, a graceful restart will be initiated. 
  21.                 Useful to work around accidental curruptions in accelerator's shared memory. 
  22.