搭建nginx服务器

先安装编译所需要的包:
yum install -y gcc-c++ gcc make pcre pcre-devel zlib zlib-devel openssl openssl-devel

再去nginx官网下载安装包:
nginx的安装包下载地址:http://nginx.org/
将包移动到/usr/local/src
解压包:tar zxvf /usr/local/src/包名
编译:
./configure \
--prefix=/usr/local/nginx \
--pid-path=/var/run/nginx/nginx.pid \
--lock-path=/var/lock/nginx.lock \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--with-http_gzip_static_module \
--http-client-body-temp-path=/var/temp/nginx/client \
--http-proxy-temp-path=/var/temp/nginx/proxy \
--http-fastcgi-temp-path=/var/temp/nginx/fastcgi \
--http-uwsgi-temp-path=/var/temp/nginx/uwsgi \
--http-scgi-temp-path=/var/temp/nginx/scgi

编译:直接执行make命令 make
安装:再执行 make install

启动:启动nginx。
先创建/var/temp/nginx目录否则nginx启动报错。(-p 循环创建)
[root@localhost sbin]# mkdir /var/temp/nginx -p
(因为编译时把文件安装到了/usr/local/nginx下)
进入/usr/local/nginx/sbin目录下 执行nginx命令: [root@localhost sbin]# ./nginx

检验:查看进程: ps aux|grep nginx
有进程启动,安装成功

关闭nginx:[root@localhost sbin]# ./nginx -s stop
刷新nginx的配置:[root@localhost sbin]# ./nginx -s reload