apt-get方式安装lnmp环境
安装nginxsudo 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
页:
[1]