/ 中存储网

Ubuntu系统安装配置Nginx+PHP+MySQL开发环境

2013-10-10 23:54:01 来源:kejihao

如果只是开发环境,直接使用apt安装即可,使用前务必设置合适的Ubuntu源后并且更新。

sudo apt-get update

sudo apt-get install php5-mysql php5-curl php5-gd php-pear php5-imap php5-mcrypt php5-memcache php5-tidy php5-xmlrpc

sudo apt-get install mysql-server mysql-client

sudo apt-get install nginx

sudo /etc/init.d/nginx start

sudo apt-get install php5-fpm

和apt安装的Apache一样,Nginx的配置文件为/etc/nginx/nginx.conf,而虚拟机的默认网站(即localhost)配置在/etc/nginx/sites-available/default中,修改或者为其他虚拟主机配置类似的文件即可。网站配置中需要添加fastcgi监听:

location ~ .php$ {

fastcgi_pass 127.0.0.1:9000;

fastcgi_index index.php;

include fastcgi_params;

}

最后使用sudo /etc/init.d/php5-fpm restart重启FPM即可,回到Linux下的Nginx即稳定又高效,写代码再次变为一种享受!