步骤基本来自于http://www.laozuo.org/3505.html感谢博主分享
留给自己日后随时用~~~
1、首先更新源
apt-get update
然后有必要更新本地软件apt-get upgrade
2、 首先安装nginx
apt-get install nginx
建立网站时在/etc/nginx/sites-available/目录下创建
xxx.com的文件用来放置配置文件
其中xxx.com是你要创建的主机
配置内容一般如下:
server {
listen 80;
server_name www.xxx.com;
access_log /srv/www/xxx.com/logs/access.log;
error_log /srv/www/xxx.com/logs/error.log;
location / {
root /srv/www/xxx.com/public_html;
index index.html index.htm; (这里还可以添加index.php)
}
}
然后创建对应的日志文件
mkdir -p /srv/www/xxx.com/public_html
mkdir -p /srv/www/xxx.com/logs
然后配置重启nginx
ln -s /etc/nginx/sites-available/xxx.com/etc/nginx/sites-enabled
/etc/init.d/nginx restart
3、安装部署FastCGI
apt-get install php5-cli php5-cgi spawn-fcgi php-pear
。。未完待续