使用 Spring Boot 加密本地

use lets encrypt local with Spring Boot

我想做这个教程

lets encrypt local

但我不知道在这里做什么:

Add LetsEncrypt LetsEncrypt has policies against generating certificates for certain domains. amazonaws.com is one of them (because they are normally transient). You need to add a CNAME to a personal domain that points to the instance you created. Here I’m using kewp.net.za.

有教程吗?

在您的 DNS 服务特定的 GUI 中或在您自己的 DNS 服务器上的文件中添加 CNAME。

每个服务都应该有自己的管理 guide/help 部分。例如: Digital Ocean(您注册域的任何注册商也可能提供具有类似 Web 界面的免费 DNS 服务。)

无论您在哪里添加它,DNS 记录的基本字段始终相同:(来源 wikipedia

 NAME                    TYPE   VALUE
 --------------------------------------------------
 bar.example.com.        CNAME  foo.example.com.

这里:

  • bar.example.com。可能是 springtutorial.mydomain.com。或者只是写成没有“。”的springtutorial以表明它是一个完整的名称。
  • foo.example.com。将是 randomid.amazonaws.com.

所以:

 NAME                    TYPE   VALUE
 --------------------------------------------------
 myalias                 CNAME  xyznodenumber.amazonaws.com.