Linux 安装Nginx并支持SSL
Posted BINGJJFLY
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 安装Nginx并支持SSL相关的知识,希望对你有一定的参考价值。
参考
https://blog.csdn.net/bjnihao/article/details/52370089
下载依赖
yum -y install gcc gcc-c++ autoconf automake libtool make cmake yum -y install zlib zlib-devel openssl openssl-devel pcre-devel
安装编译
nginx下载地址:http://nginx.org/en/download.html
cd /home/softwares wget http://nginx.org/download/nginx-1.15.7.tar.gz tar -zxvf nginx-1.15.7.tar.gz -C /home/ cd /home/nginx-1.15.7/ ./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-pcre make make install
常规操作
[[email protected] ~]# /usr/local/nginx/sbin/nginx 启动 [[email protected] ~]# /usr/local/nginx/sbin/nginx -s stop 停止 [[email protected] ~]# /usr/local/nginx/sbin/nginx -s reload 重新载入 [[email protected] ~]# /usr/local/nginx/sbin/nginx -v 查看版本 [[email protected] ~]# /usr/local/nginx/sbin/nginx -t 测试配置文件是否正常
以上是关于Linux 安装Nginx并支持SSL的主要内容,如果未能解决你的问题,请参考以下文章
Linux Nginx 配置 SSL 证书支持 HTTPS 访问(参考)