申请免费的Let‘s Encrypt 通配符 HTTPS 证书

参考

https://www.cnblogs.com/wzlinux/p/11188454.html

检测工具

https://www.ssleye.com/ssltool/cer_check.html

申请步骤

安装工具包

curl -o /etc/yum.repos.d/epel-7.repo https://mirrors.aliyun.com/repo/epel-7.repo
yum install -y certbot

##
certbot certonly  -d *.yeyese.top --manual \
--preferred-challenges dns \
--server https://acme-v02.api.letsencrypt.org/directory


  • -manual :交互式获取,
  • --preferred-challenges dns:使用DNS验证的方式(泛域名只能使用DNS验证),如果取消此选项,将会默认使用 http 形式认证(.well-known),
  • --server:指明支持acme-v02的Server地址,默认是acme-v01的地址。

申请过程如下,为了确保域名是在你的管理权限之内,我们中间需要做一条 TXT 的 DNS 解析:

Saving debug log to /var/log/letsencrypt/letsencrypt.log
Plugins selected: Authenticator manual, Instal

相关推荐

  1. 申请免费Let‘s Encrypt 通配符 HTTPS 证书

    2024-05-14 16:56:06       36 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-05-14 16:56:06       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-05-14 16:56:06       101 阅读
  3. 在Django里面运行非项目文件

    2024-05-14 16:56:06       82 阅读
  4. Python语言-面向对象

    2024-05-14 16:56:06       91 阅读

热门阅读

  1. Python实战开发及案例分析(21)—— 广度优先

    2024-05-14 16:56:06       32 阅读
  2. Python数独游戏

    2024-05-14 16:56:06       36 阅读
  3. 【Python系列-01学习路线-01基础】03变量

    2024-05-14 16:56:06       60 阅读
  4. yarn 命令(防止遗忘)

    2024-05-14 16:56:06       31 阅读
  5. 深入理解 MySQL 视图

    2024-05-14 16:56:06       33 阅读
  6. MySQL创建储存过程函数

    2024-05-14 16:56:06       33 阅读
  7. 空格探究 空格ASCII码值不一样

    2024-05-14 16:56:06       29 阅读
  8. 沪深300指数介绍

    2024-05-14 16:56:06       34 阅读
  9. 谁考了第k名C++

    2024-05-14 16:56:06       34 阅读
  10. XSS实战漏洞挖掘

    2024-05-14 16:56:06       33 阅读