直接在阿里云上进行配置
然后进入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;
}
注意nginx中所有命令都在/etc/init.d 中 直接输入 nginx start / nginx stop 就可以了
nginx + php 的配置,布布扣,bubuko.com
原文地址:http://blog.csdn.net/worldmakewayfordream/article/details/38201261