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

nginx + php 的配置

时间:2014-07-28 16:29:23      阅读:274      评论:0      收藏:0      [点我收藏+]

标签:php   阿里云   nginx   cgi   

直接在阿里云上进行配置


然后进入nginx/conf/nginx.conf 中添加

注意是放在server里面

location ~ \.php$ {

  root              /home/jsckdao/www;          #这是你网站的根目录

  fastcgi_pass  127.0.0.1:3344;            #这里指定了fastcgi进程侦听的端口,nginx就是通过这里与php交互的

  fastcgi_index   index.php;            

  fastcgi_param SCRIPT_FILENAME  $document_root/$fastcgi_script_name;            

  include           fastcgi_params;        

}

然后运行./php-cgi   -b   3344     或  ./php-cgi -b 127.0.0.1:3344

注意nginx中所有命令都在/etc/init.d 中 直接输入 nginx start    /   nginx stop 就可以了

NGINX + PHP CONFIG

 

nginx + php 的配置,布布扣,bubuko.com

nginx + php 的配置

标签:php   阿里云   nginx   cgi   

原文地址:http://blog.csdn.net/worldmakewayfordream/article/details/38201261

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