nginx编译和配置
Yum install –y gcc gcc-c++
Yum install zlib zlib-devel
Yum install openssl
2.编译和安装pcre
执行如下命令:
#cd/data/software/pcre-8.32
#./configure –prefix
#make
#make install
2.编译和安装nginx
执行如下命令:
# cd /data/software/nginx-1.7.0
# ./configure --prefix=/data/nginx/ --with-http_ssl_module --with-http_spdy_module \
--with-http_stub_status_module --with-pcre
#Make
#Make install
–with-http_stub_status_module:支持nginx状态查询
–with-http_ssl_module:支持https
–with-http_spdy_module:支持google的spdy,想了解请百度spdy,这个必须有ssl的支持
–with-pcre:为了支持rewrite重写功能,必须制定pcre
安装完成启动nginx。
[root@localhost conf]#/data/nginx/sbin/nginx (启动nginx提示如下错误)
/data/nginx/sbin/nginx: error while loadingshared libraries: libpcre.so.1: cannot open shared object file: No such file ordirectory
建立软连接
[hadoop@SCLABHADOOP01 ~]$ ln -s/usr/local/lib/libpcre.so.1 /lib64/
判断Nginx配置是否正确命令如下:
/usr/nginx/sbin/nginx –t
/data/nginx/sbin/nginx(启动服务)
/data/nginx/sbin/nginx-s stop(停止服务)
/data/nginx/sbin/nginx-s reload(重启服务)
配置nginx
#server {
#侦听80端口
listen 80;
#定义使用www.xx.com访问
server_name www.xx.com;
#设定本虚拟主机的访问日志
access_log logs/www.xx.com.access.log main;
#默认请求
location / {
root /root; #定义服务器的默认网站根目录位置
index index.phpindex.html index.htm; #定义首页索引文件的名称
例
server {
listen 80;
server_name bo.artronekp.net;
location/ {
root /data/software/beian/;
index index.html help.html;
}
}
以上就介绍了nginx编译和配置,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
上一篇: 检查ISBN号码是否合法
下一篇: JAVA/JSP学习系列之二