美文网首页
阿里云服务器安装nginx以及配置https证书

阿里云服务器安装nginx以及配置https证书

作者: 等女巫的一个微笑 | 来源:发表于2018-12-21 13:32 被阅读29次

一 nginx 安装
安装环境:
yum install gcc-c++
yum install -y pcre pcre-devel
yum install -y zlib zlib-devel
yum install -y openssl openssl-devel
1.下载 nginx-1.11.0.tar.gz,并通过 WinSCP 工具上传到服务器/usr/local/src 目录下
2.解压安装
cd /usr/local/src
tar -zxvf nginx-1.11.0.tar.gz
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
make && make install
3.安装完毕 启动 nginx
`
这个时候nginx安装在/usr/local/目录下面
找到/usr/local/nginx/sbin/
执行命令 # ./nginx启动nginx

查看是否启动
ps -ef|grep nginx
如下图启动成功

启动成功.png

二,配置https证书
1.买阿里云免费的ssl证书


购买证书.png

2.下载对应的ssl证书到本地

下载证书.png
将下载的证书解压放在一个cert文件夹下面,将此文件夹上传到服务器的/usr/local/nginx/conf目录下

3.选择免费的购买以后在安全组中添加一个443端口


选择云服务器ECS.png
选择安全组.png
选择配置规则.png
选择添加规则.png 添加规则参数.png

4.配置/usr/local/nginx/conf/nginx.conf文件内容

nginx.conf文件配置.png
这样完成以后 https和http都可以共存

相关文章

网友评论

      本文标题:阿里云服务器安装nginx以及配置https证书

      本文链接:https://www.haomeiwen.com/subject/skemkqtx.html