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

网站Nginx配置时无法解析php文件

时间:2015-02-15 15:12:22      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:nginx   配置   php   

我在安装阿里云对应的VPSMate面板时打开网站首页会直接下载文件,一想就是没有解析php,不过我不会这个,找同事解决了,记录下~

ps:csdn终于支持markdown了不容易啊……


如何解决:

  • 打开/etc/nginx/nginx.conf.default,复制如下代码
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000   
  location ~ \.php$ {
    root           html;
    fastcgi_pass   127.0.0.1:9000;
    fastcgi_index  index.php;
    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    include        fastcgi_params;
  }
  • 放到/etc/nginx/conf.d/_.conf,文件中,保存后如下代码所示
server { # Generated by VPSMate
    listen 80;
    server_name _ www.paoyx.com;

    index index.html index.htm index.php;

    location / {
        root    /var/www;
    }
    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000   
    location ~ \.php$ {
      root           html;
      fastcgi_pass   127.0.0.1:9000;
      fastcgi_index  index.php;
      fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
      include        fastcgi_params;
    }
    location = /404.html {
        alias   /usr/share/nginx/html;
    }

    location = /50x.html {
        alias   /usr/share/nginx/html;
    }

}

网站Nginx配置时无法解析php文件

标签:nginx   配置   php   

原文地址:http://blog.csdn.net/tmacsky/article/details/43834819

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