码迷,mamicode.com
首页 > 其他好文 > 详细

apt-get方式安装lnmp环境

时间:2015-07-05 18:16:32      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

安装nginx
sudo apt-get install nginx
安装php和mysql
sudo apt-get install php5-cli php5-cgi php5-curl php5-mysql php5-fpm mysql-server

修改nginx配置文件
/etc/nginx/nginx.conf

添加 /etc/nginx/vhost/localhost.conf 文件
server {
        listen 80;
        server_name localhost; #绑定域名
        index index.htm index.html index.php; #默认文件
        root /data/webroot; #网站根目录
        location ~ \.php$ {
                fastcgi_pass 127.0.0.1:9000;
                fastcgi_index index.php;
                include fastcgi_params;
        }
        access_log /data/logs/access.log;
        error_log /data/logs/error.log;
}
server {
        listen 80;
        server_name test.localhost; #绑定域名
        index index.htm index.html index.php; #默认文件
        root /data/webroot/testRoot; #网站根目录
                location ~ \.php$ {
                        fastcgi_pass 127.0.0.1:9000;
                        fastcgi_index index.php;
                        include fastcgi_params;
        }
        access_log /data/logs/test_access.log;
        error_log /data/logs/test_error.log;
}

 

检查nginx配置

sudo /usr/sbin/nginx -t

重启nginx

sudo /usr/sbin/nginx -s reload

启动php-cgi

php-cgi -b 127.0.0.1:9000


apt-get方式安装lnmp环境

标签:

原文地址:http://www.cnblogs.com/wangkongming/p/4622673.html

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