欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

nginx编译和配置

程序员文章站 2024-01-27 12:34:28
...
1安装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教程有兴趣的朋友有所帮助。