一、apt安装方式
1.安装nginx
sudo apt-get install nginx
安装之后的文件结构大致为:
* 所有的配置文件都在/etc/nginx下,并且每个虚拟主机已经安排在了/etc/nginx/sites-available下
* 日志放在了/var/log/nginx下
* 并已经在/etc/init.d/下创建了启动脚本nginx
* 默认的虚拟主机的目录设置在了/var/www/nginx-default
启动nginx
sudo service nginx start
或
sudo /etc/init.d/nginx start
访问即可看到nginx欢迎界面
2.安装php
sudo apt-get install php5 php5-cgi
3.安装fastcgi
sudo apt-get install spawn-fcgi
4.配置nginx
修改nginx的配置文件:/etc/nginx/sites-available/default
修改主机名:
server_name localhost;
修改index的一行为:
index index.php index.html index.htm;
去掉下面部分的注释用于支持php脚本:
location ~ /.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/nginx-default$fastcgi_script_name; #fastcgi_param设置参数
include /etc/nginx/fastcgi_params;
}
重启nginx
sudo service nginx restart
5.用spawn-fcgi启动php5-cgi
spawn-fcgi -a 127.0.0.1 -p 9000 -C 10 -u www-data -f /usr/bin/php5-cgi
6.测试
在/var/www/nginx-default下新建一个index.php文件
<?php echo phpinfo(); ?>
访问 http://localhost 即可测试成功
二、源代码安装nginx
1、下载源代码
从官网上下载最新版 nginx-1.9.1.tar.gz
2、解压
tar zxvf nginx-1.9.1.tar.gz
3、配置
./configure --prefix=/usr/local/nginx --with-pcre=../pcre-8.35 --with-zlib=../zlib-1.2.8 --with-openssl=../openssl-1.0.1h --with-http_ssl_module
4、安装
make && make install
5、注意问题:
--with-pcre,zlib,openssl等依赖的其是源代码,因此它们指向的是其源代码路径,而不是安装后的库路径
用这种方式安装后的路径如下:
ls -l /usr/local/nginx
drwx------ 2 nobody root 4096 Jul 14 13:56 client_body_temp
drwxr-xr-x 2 root root 4096 Jul 14 14:47 conf
drwx------ 7 nobody root 4096 Jul 9 22:52 fastcgi_temp
drwxr-xr-x 3 root root 4096 Jul 11 18:05 html
drwxr-xr-x 2 root root 4096 Jun 28 07:22 logs
drwx------ 2 nobody root 4096 Jun 1 16:38 proxy_temp
drwxr-xr-x 2 root root 4096 Jun 28 07:15 sbin
drwx------ 2 nobody root 4096 Jun 1 16:38 scgi_temp
drwx------ 2 nobody root 4096 Jun 1 16:38 uwsgi_temp
其中:conf为配置文件路径
html为默认网页路径
sbin为可执行文件路径
其他配置类似.
W3c0.com 提供的内容仅用于培训。我们不保证内容的正确性。通过使用本站内容随之而来的风险与本站无关。W3c0 简体中文版的所有内容仅供测试,对任何法律问题及风险不承担任何责任。 当使用本站时,代表您已接受了本站的使用条款和隐私条款。版权所有,保留一切权利。 鲁ICP备15022115号