一、下载和安装Nginx服务
# 安装wget软件
[root@localhost home]# yum install wget
# 安装Nginx所需要的依赖
[root@localhost home]# yum install -y gcc-c++ zlib zlib-devel openssl openssl-devel pcre pcre-devel
# 下载Nginx安装包
[root@localhost home]# wget -c http://nginx.org/download/nginx-1.26.0.tar.gz
# 解压Nginx安装包
[root@localhost home]# tar -zxvf nginx-1.26.0.tar.gz
# 进入解压后的Nginx目录:
[root@localhost home]# cd /nginx-1.26.0
# 执行配置: 添加http和https模块
# --prefix为指定安装路径,不指定默认安装到/usr/local/nginx目录
[root@localhost nginx-1.26.0]# ./configure --prefix=/opt/nginx --with-http_stub_status_module --with-http_ssl_module
# 对Nginx编译和安装
[root@localhost nginx-1.26.0]# make & make install
二、修改Nginx配置和打包以便后续解压直接使用,省去打包编译。
1、修改nginx.conf文件:vi /opt/nginx/conf/nginx.conf。
2、上传https证书到/opt/nginx/conf/cert
3、编写Nginx服务管理脚本并在存放到conf目录
# 编写服务管理脚本ÿ