最近几个客户都订购了阿里云服务器,如何配置服务器就比较重要了
比较喜欢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 =;
fastcgi_pass 127.0.0.1:;
fastcgi_index index.php;
include fastcgi_params;
}
然后启动服务器sudo service nginx start
接着安装mysql 也就一句指令的事,sudo apt-get mysql
这样就配置ok了,浏览器输入阿里云的ip看看,是不是可以了
上传一个php探针,看看是否php启动了
以上就是ubuntn服务器配置php环境的方法,相当的简单