您的位置:首页 > 其它

apt-get方式安装lnmp环境

2015-07-05 17:27 531 查看
安装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


                                            
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: