Nginx配置https原理及实现过程详解


Posted in Servers onMarch 31, 2021

使用linux实用工具certbot来生成https证书

这个工具是生成Let's Encrypt证书,

Let's Encrypt数字证书认证机构,Let's Encrypt 是由互联网安全研究小组(ISRG,一个公益组织)提供的服务

提供免费的SSL/TLS证书

2015年12月3日,该服务进入公测阶段,正式面向公众。

2016年4月12日,该项目正式离开Beta阶段。

到2016年9月9日,Let's Encrypt 已经发放 1000 万张证书。

因此对于大部分中小型网站来说,是一个值得考虑的选择。

https配置的步骤

1打开 https://certbot.eff.org/ 选择对应操作系统与 Web 服务器

这里我选择nginx服务器,CentOS7服务器上

2执行命令,并根据需要修改相应域名参数。

certbot要通过yum安装,certbot被打包到epel源中,

所以安装启动epel库,安装epel源查看链接

https://fedoraproject.org/wiki/EPEL#How_can_I_use_these_extra_packages.3F

启动epel源,可以使用手动自己启动epel,也可以借助yum-config-manager命令来启动

安装yum-config-manager

yum -y install yum-utils

启动epel

yum-config-manager --enable rhui-REGION-rhel-server-extras rhui-REGION-rhel-server-optional

3安装certbot

sudo yum install certbot python2-certbot-nginx

获取证书的两种方式:身份验证器和安装程序

使用webRoot插件进行安装,这个要求你的服务器80端口能够正常被访问到(这个域名是属于你的)

webRoot插件通过certonly和--webroot(或者-w)在命令行上执行命令

certbot certonly -w /var/www/example -d www.example.com

certbot certonly -w 可以被http访问到的webroot目录 -d 要配置https的域名名称

上面的 /var/www/example表示的是在nginx配置文件中root根节点所指向的根路径

webroot插件的工作原理是为每个请求的域创建一个临时文件${webroot-path}/.well-known/acme-challenge。

然后,Let的加密验证服务器发出HTTP请求,以验证每个请求的域的DNS是否解析为运行certbot的服务器。

访问请求如下

66.133.109.36 - - [05/Jan/2016:20:11:24 -0500] "GET /.well-known/acme-challenge/HGr8U1IeTW4kY_Z6UIyaakzOkyQgPr_7ArlLgtZE8SX HTTP/1.1" 200 87 "-" "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)"

所以我们服务器需要放通.well-known/acme-challenge这个访问路径

例如,

server
  {
    listen 80;
    server_name www.example.com; 
    index index.html ;
    root /var/www/example;
  
    。。。
  
    location ~ /.well-known {
      allow all;
    }
  }

具体的http配置文件

server
  {
    listen 80;
    server_name www.example.com; 
    index index.html ;
    root /var/www/www.example.com;


    location / {
      proxy_redirect off;
      proxy_pass http://localhost:8080;
      proxy_set_header Host $host;
      proxy_set_header  X-real-ip $remote_addr;
      proxy_set_header  X-Forwarded-For $proxy_add_x_forwarded_for;
    }

    #error_page  404  /404.html;

    location /nginx_status
    {
      #stub_status on;
      #access_log  off;
    }

    location ~ /.well-known {
      allow all;
    }

    location ~ /\.
    {
      deny all;
    }
access_log /data/log/nginx//var/www/www.example.com/-access.log;
    error_log /data/log/nginx//var/www/www.example.com/-error.log;
}

执行完命令后,https证书就会生成在/etc/letsencrypt/live目录下

certbot certonly -w /var/www/example -d www.example.com

比如上面的命令会生成证书/etc/letsencrypt/live/www.example.com/fullchain.pem

生成证书密钥文件/etc/letsencrypt/live/www.example.com/privkey.pem

然后我们只需要为该域名加上https配置,我们nginx就配置完成https

https对应443端口

具体https配置文件

server
  {
    listen 443 ssl http2;
    #listen [::]:443 ssl http2;
    server_name www.example.com;
    index index.html index.htm index.php default.html default.htm default.php;
    root /var/www/www.example.com/;
    
    ssl on;
    ssl_certificate /etc/letsencrypt/live/www.example.com/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/www.example.com/privkey.pem;
    
   location / {
      proxy_redirect off;
      proxy_pass http://localhost:8080;
      proxy_set_header Host $host;
      proxy_set_header  X-real-ip $remote_addr;
      proxy_set_header  X-Forwarded-For $proxy_add_x_forwarded_for;
    }

    #error_page  404  /404.html;

    include enable-php-pathinfo.conf;

    location ~ /.well-known {
      allow all;
    }

    location ~ /\.
    {
      deny all;
    }

    access_log /data/log/nginx/www.example.com-ssl-access.log;
    error_log /data/log/nginx/www.example.com-ssl-error.logs;  
}

查看生产的证书

tree /etc/letsencrypt/live/

证书续签

Let's Encrypt 生成的免费证书为3个月时间,但是我们可以无限次续签证书

certbot renew

使用定时器来自动重新生成证书

0 0,12 * * * python -c 'import random; import time; time.sleep(random.random() * 3600)' && certbot renew

centos6使用

1获取certbot客户端

wget https://dl.eff.org/certbot-auto
chmod a+x certbot-auto

2停止nginx

service nginx stop

3生成证书

./certbot-auto certonly --standalone --email `你的邮箱地址` -d `你的域名地址`

当前网站有多个域名时需在后面增加,例如

./certbot-auto certonly --standalone --email `你的邮箱地址` -d `你的域名1` -d `你的域名2`

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Servers 相关文章推荐
详解如何修改nginx的默认端口
Mar 31 Servers
Nginx配置80端口访问8080及项目名地址方法解析
Mar 31 Servers
Nginx进程调度问题详解
Sep 25 Servers
使用Nginx搭载rtmp直播服务器的方法
Oct 16 Servers
Apache Hudi集成Spark SQL操作hide表
Mar 31 Servers
Tomcat执行startup.bat出现闪退的原因及解决办法
Apr 20 Servers
Windows server 2012 R2 安装IIS服务器
Apr 29 Servers
利用Apache Common将java对象池化的问题
Jun 16 Servers
解决Git推送错误non-fast-forward的方法
Jun 25 Servers
Python安装及建立虚拟环境的完整步骤
Jun 25 Servers
nginx代理实现静态资源访问的示例代码
Jul 07 Servers
服务器nginx权限被拒绝解决案例
Sep 23 Servers
如何在centos上使用yum安装rabbitmq-server
Mar 31 #Servers
Windows下使用Nginx+Tomcat做负载均衡的完整步骤
阿里云Nginx配置https实现域名访问项目(图文教程)
详解Nginx 工作原理
fastdfs+nginx集群搭建的实现
Nginx域名转发https访问的实现
Mar 31 #Servers
Nginx本地目录映射实现代码实例
Mar 31 #Servers
You might like
PHP EOT定界符的使用详解
2008/09/30 PHP
php将图片文件转换成二进制输出的方法
2015/06/10 PHP
php检查页面是否被百度收录
2015/10/28 PHP
php验证邮箱和ip地址最简单方法汇总
2015/10/30 PHP
yii2学习教程之5种内置行为类详解
2017/08/03 PHP
JavaScript中prototype为对象添加属性的误区介绍
2013/10/15 Javascript
js数组操作学习总结
2013/11/04 Javascript
node.js中的fs.fchown方法使用说明
2014/12/16 Javascript
JavaScript高阶函数_动力节点Java学院整理
2017/06/28 Javascript
详解vue-cli本地环境API代理设置和解决跨域
2017/09/05 Javascript
JS 实现分页打印功能
2018/05/16 Javascript
微信内置开发 iOS修改键盘换行为搜索的解决方案
2019/11/06 Javascript
JavaScript(js)处理的HTML事件、键盘事件、鼠标事件简单示例
2019/11/19 Javascript
vue el-table实现自定义表头
2019/12/11 Javascript
js实现登录拖拽窗口
2020/02/10 Javascript
python 实现文件的递归拷贝实现代码
2012/08/02 Python
一个超级简单的python web程序
2014/09/11 Python
利用一个简单的例子窥探CPython内核的运行机制
2015/03/30 Python
听歌识曲--用python实现一个音乐检索器的功能
2016/11/15 Python
python编程通过蒙特卡洛法计算定积分详解
2017/12/13 Python
python3中类的继承以及self和super的区别详解
2019/06/26 Python
浅谈Tensorflow 动态双向RNN的输出问题
2020/01/20 Python
详解CSS3浏览器兼容
2016/12/14 HTML / CSS
html5 分层屏幕适配的方法
2018/03/16 HTML / CSS
使用phonegap进行提示操作的具体方法
2017/03/30 HTML / CSS
Nike台湾官方商店:Nike.com (TW)
2017/08/16 全球购物
模具专业毕业生自荐书范文
2014/02/19 职场文书
化妆品店促销方案
2014/02/24 职场文书
新员工试用期自我鉴定
2014/04/17 职场文书
暑期教师培训方案
2014/06/07 职场文书
辞职信的写法
2015/02/27 职场文书
教师岗位职责范本
2015/04/02 职场文书
大学生社区义工服务心得体会
2016/01/22 职场文书
Nginx访问日志及错误日志参数说明
2021/03/31 Servers
MySQL 分组查询的优化方法
2021/05/12 MySQL
基于Redission的分布式锁实战
2022/08/14 Redis