码迷,mamicode.com
首页 > 数据库 > 详细

阿里云配置php环境 ubuntu12.04 32 nginx+php5+mysql

时间:2016-11-10 14:34:48      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:nbsp   阿里云   环境   fast   nginx   启动   param   ble   ati   

最近几个客户都订购了阿里云服务器,如何配置服务器就比较重要了

比较喜欢ubuntu的系统,这里以12.04 32位来说

服务器配置采用 nginx+php5+mysql

首先是apt-get的更新 apt-get update先运行下,不然可能找不到软件包

sudo apt-get install nginx php5-fpm

装完这2个以后去nginx服务器配置下php,找到配置目录下的/etc/nginx/site-available/default文件

修改如下location部分即可

    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        include fastcgi_params;
    }

然后启动服务器sudo service nginx start

接着安装mysql 也就一句指令的事,sudo apt-get mysql

这样就配置ok了,浏览器输入阿里云的ip看看,是不是可以了

上传一个php探针,看看是否php启动了

以上就是ubuntn服务器配置php环境的方法,相当的简单

 

阿里云配置php环境 ubuntu12.04 32 nginx+php5+mysql

标签:nbsp   阿里云   环境   fast   nginx   启动   param   ble   ati   

原文地址:http://www.cnblogs.com/darkspr/p/6050475.html

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