环境
虚拟机:VMware 16.2.4
OS:centos 7.6
远程连接工具:Xshell 7
nginx版本: nginx-1.14.2
php版本:php-7.2.12
一、nginx安装准备
1.将压缩包上传到指定目录并解压
2.进入解压后生成的nginx目录
3.创建worker进程运行用户
useradd -M -s /sbin/nologin www
4.安装依赖
yum -y install pcre-devel zlib-devel openssl-devel
二、配置安装
1.编写配置脚本
1|vim mynginx.sh
./configure --prefix=/usr/local/nginx \
--user=www --group=www \
--with-http_ssl_module \
--with-http_stub_status_module \
--with-http_realip_module
保存退出
2.为脚本赋予执行权限并执行
1|chmod +x mynginx.sh
2|./mynginx.sh
3.编译安装
make -j2 && make install
三、后续配置
1.nginx