沉默之都

沉默,造就了我们的冷酷-程序的威力
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

nginx支持php配置

Posted on 2014-04-16 18:03  基点项目师  阅读(201)  评论(0编辑  收藏  举报

 

location / {
root /wwwroot/phptest;
index index.html index.htm index.php;
}

location ~ \.(php|php5)$ {
root /wwwroot/phptest;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /wwwroot/phptest$fastcgi_script_name;
include fastcgi_params;
}