码迷,mamicode.com
首页 > Web开发 > 详细

nginx php-fpm 配置

时间:2014-11-11 18:04:12      阅读:305      评论:0      收藏:0      [点我收藏+]

标签:blog   io   ar   div   on   log   html   ef   as   

yum install nginx php php-fpm

#vim /etc/nginx/conf.d/default.conf 

    location ~ \.php$ {
         root   /usr/share/nginx/html;
         fastcgi_pass   127.0.0.1:9000;
         fastcgi_index  index.php;
         fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
         include    fastcgi_params;
    }
    

  

nginx php-fpm 配置

标签:blog   io   ar   div   on   log   html   ef   as   

原文地址:http://www.cnblogs.com/DDSys/p/4089613.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!