一、安装nginx相对较为简单,安装前确认已经安装了pcre,可通过rpm -q pcre查看本机安装版本。一般安装即可。若无安装直接yum install pcre安装下。
二、下载当前稳定版1.2.7
cd /tmp
wget
tar -xvf nginx-1.2.7.tar.gz
cd nginx-1.2.7
三、正式安装
-
#安装Nginx
-
tar -zxvf nginx-1.2.7.tar.gz
-
cd nginx-1.2.7
-
./configure --user=www --group=www \
-
--prefix=/usr/local/nginx \
-
--sbin-path=/usr/local/nginx/sbin/nginx \
-
--conf-path=/usr/local/nginx/conf/nginx.conf \
-
--with-http_stub_status_module \
-
--with-http_ssl_module \
-
--with-pcre \
-
--lock-path=/var/run/nginx.lock \
-
--pid-path=/var/run/nginx.pid
-
编译完成没错误后,执行以下命令
-
make && make install && cd ../
四、更改nginx配置信息
-
#更改配置
-
vi /usr/local/nginx/conf/nginx.conf
-
-
#修改一些参数,别直接替换文件,这只是一部分
-
user www
-
-
events {
-
use epoll;
-
worker_connections 1024;
-
}
-
listen 80;
-
server_name localhost;
-
index index.html index.htm index.php;
-
root /var/www/html;
-
-
location ~ .*\.(php|php5)?$ {
-
fastcgi_pass 127.0.0.1:9000;
-
fastcgi_index index.php;
-
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
-
include fastcgi_params;
-
}
-
-
#注意这里
-
#$document_root$fastcgi_script_name;
-
#检测配置文件
-
/usr/local/nginx/sbin/nginx -t
-
-
#提示表示成功
-
#nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
-
#nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
-
-
#开启Nginx
-
/usr/local/nginx/sbin/nginx
-
#平滑重启Nginx
-
/usr/local/nginx/sbin/nginx -s reload
-
-
#添加开机启动
-
vi /etc/rc.d/rc.local
-
#最后一行加入
-
/usr/local/nginx/sbin/nginx &
五、测试nginx及php是否可用
-
vi /var/www/html/index.php
-
#新建index文件,输入
-
<?php
-
phpinfo();
-
?>
如果出现phpinfo界面,查看显示信息无异常,说明nginx跟php配置都成功。
这样就完成了nginx的安装配置。下一步就该进行zend安装了。
cd打开,有好的建议可提供~
阅读(1491) | 评论(0) | 转发(0) |