`
xubaoguo
  • 浏览: 77417 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

ubuntu 11.04 配置nginx +php+mysql

阅读更多

1、首先安装aginx

 

sudo apt-get install nginx

 

启动nginx

 

/etc/init.d/nginx start

 

你会看到  wellcome nginx

 

2、安装php

apt-get install php5-cli php5-cgi spawn-fcgi 

3安装mysql

sudo apt-get install mysql-server mysql-client



4、修改Nginx的配置文件,位于/etc/nginx/sites-available下的default文件:
在root /usr/share/nginx/www;下的index index.html index.html;一行中添加index.php为:

1 index index .php index .html index .htm;

之后去掉下面代码前的注释:

1 location ~ \.php$ {
2 fastcgi_pass 127.0.0.1:9000;
3 fastcgi_index index .php;
4 include fastcgi_params;
5 }

保存~然后重启Nginx:


spawn -a 127.0.0.1
1 sudo /etc/init.d/nginx stop
2 sudo /etc/init.d/nginx start
http://library.linode.com/web-servers/nginx/php-fastcgi/ubuntu-11.04-natty

http://puras.cn/?p=85
0
2
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics