1. 下载安装包
https://nginx.org/en/download.html
2. gcc安装
yum install gcc-c++
3. pcre安装
perl compatible reqular expressions是一个perl库,nginx的http模块使用pcre来解析正则表达式
yum install -y pcre pcre-devel
4. zlib安装
nginx使用zlib对http包的内容进行gzip
yum install -y zlib zlib-devel
5. openssl安装
nginx支持的https使用openssl库
yum install -y openssl openssl-devel
6. 使用非root用户解压并配置
tar -zxvf nginx-1.10.1.tar.gz
cd nginx-1.10.1
1.使用默认配置
./configure
2.自定义配置(不推荐)
./configure \
--prefix=/usr/local/nginx \
--conf-path=/usr/local/nginx/conf/nginx.conf \
--pid-path=/usr/local/nginx/conf/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
7. make && make install
8.启动、停止nginx
cd /usr/local/nginx/sbin/
./nginx
./nginx -s stop
./nginx -s quit
./nginx -s reload
./nginx -s quit:此方式停止步骤是待nginx进程处理任务完毕进行停止。
./nginx -s stop:此方式相当于先查出nginx进程id再使用kill命令强制杀掉进程。