轩辕镜像 官方专业版
轩辕镜像
专业版
轩辕镜像 官方专业版
轩辕镜像
专业版
首页个人中心搜索镜像
交易
充值流量¥7起我的订单
文档
工具
提交工单页面收录
certbot-route53

markdumay/certbot-route53

markdumay

Unprivileged Certbot with AWS Route 53 DNS Plugin

下载次数: 0状态:社区镜像维护者:markdumay仓库类型:镜像最近更新:5 年前
让 AI 帮你使用轩辕镜像? · 展开查看说明 · 点击收起说明

如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。

只需在 AI 对话中先发送下面这句话即可:

请先完整阅读并严格遵守以下文档中的全部规则与要求:

https://xuanyuan.cloud/agents.md

在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。

查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。

镜像简介
下载命令
镜像标签列表与下载命令
轩辕镜像,不浪费每一次拉取。
点击查看

nginx-certbot (work in progress)

Automatically Renew Certificates For an Unprivileged Nginx Web Server

https://github.com/markdumay/nginx-certbot/commits/master

https://github.com/markdumay/nginx-certbot/commits/master
https://github.com/markdumay/nginx-certbot/commits/master

https://github.com/markdumay/nginx-certbot/commits/masterhttps://nginx.org is a popular open-source web server and reverse proxy. This repository sets up Nginx as an unprivileged Docker container to make it more secure. Furthermore, it uses https://certbot.eff.org to automatically install and renew Let's Encrypt certificates, enabling Nginx to act as an HTTPS server. Certbot is run as a root-less container too. The script uses a DNS-01 challenge to support automated installation and renewal of wildcard certificates. More than 10 different DNS providers are supported, or any DNS server supporting RFC 2136 Dynamic Updates.

Built With

The project uses the following core software components:

  • https://certbot.eff.org - Open-source software tool for automatically using Let’s Encrypt certificates on manually-administrated websites to enable HTTPS.
  • https://docker.com - Open-source container platform.
  • https://nginx.org - Open-source web server and reverse proxy.

Prerequisites

Nginx-certbot can run on any Docker-capable host. The setup has been tested locally on macOS Catalina and in production on a server running Ubuntu 20.04 LTS. DNS integration has been tested with Cloudflare, although other DNS plugins are supported too. Additional prerequisites are:

  • A registered domain name is required - A domain name is required to configure SSL certificates that will enable secure traffic to your web server.

  • Docker Engine and Docker Compose are required - nginx-certbot is to be deployed as Docker container using Docker Compose for convenience. Docker Swarm is a prerequisite to enable Docker secrets, however, the use of Docker secrets itself is optional. This https://docs.docker.com/engine/reference/commandline/swarm_init/ explains how to initialize Docker Swarm on your host.

  • A DNS provider supported by certbot is required - nginx-certbot uses a DNS-01 challenge to issue and renew wildcard certificates automatically. As such, an account and token for a supported DNS provider is required. Supported DNS providers and protocols are: https://certbot-dns-cloudflare.readthedocs.io, https://certbot-dns-cloudxns.readthedocs.io, https://certbot-dns-digitalocean.readthedocs.io, https://certbot-dns-dnsimple.readthedocs.io, https://certbot-dns-dnsmadeeasy.readthedocs.io, https://certbot-dns-gehirn.readthedocs.io, https://certbot-dns-google.readthedocs.io, https://certbot-dns-linode.readthedocs.io, https://certbot-dns-luadns.readthedocs.io, https://certbot-dns-nsone.readthedocs.io, https://certbot-dns-ovh.readthedocs.io, https://certbot-dns-rfc2136.readthedocs.io, https://certbot-dns-route53.readthedocs.io, and https://certbot-dns-sakuracloud.readthedocs.io. Click on each link to identify the required account and/or token information.

Testing

It is recommended to test the services locally before deploying them in a production environment. Running the services with docker-compose greatly simplifies validating everything is working as expected. Below four steps will allow you to run the services on your local machine and validate they are working correctly.

Step 1 - Clone the Repository

The first step is to clone the repository to a local folder. Assuming you are in the working folder of your choice, clone the repository files with git clone. Git automatically creates a new folder nginx-certbot and copies the files to this directory. The option --recurse-submodules ensures the embedded submodules are fetched too. Change your working folder to be prepared for the next steps. The code examples use example.com as the domain name and cloudflare as the DNS provider, replace them with the correct values.

console
git clone --recurse-submodules https://github.com/markdumay/nginx-certbot.git
cd nginx-certbot

Step 2 - Update the Environment Variables

The docker-compose.yml file uses environment variables to simplify the configuration. You can use the sample file in the repository as a starting point.

console
mv sample.env .env

The .env file specifies eight variables. Adjust them as needed:

VariableMandatoryExampleDescription
CERTBOT_DOMAINYesexample.comDomain for which certbot will issue a wildcard certificate. Both *.example.com and example.com are issued. This means that, for example, www.example.com is covered by the certificate. However, thisisa.subdomain.example.com is not covered, as this requires a wildcard certificate for *.subdomain.example.com.
CERTBOT_EMAILYesmail@example.comAn administrative email account to receive notifications from Let's Encrypt on.
CERTBOT_DNS_PLUGINYescloudflareA DNS provider supported by certbot. Supported values are https://certbot-dns-cloudflare.readthedocs.io, https://certbot-dns-cloudxns.readthedocs.io, https://certbot-dns-digitalocean.readthedocs.io, https://certbot-dns-dnsimple.readthedocs.io, https://certbot-dns-dnsmadeeasy.readthedocs.io, https://certbot-dns-gehirn.readthedocs.io, https://certbot-dns-google.readthedocs.io, https://certbot-dns-linode.readthedocs.io, https://certbot-dns-luadns.readthedocs.io, https://certbot-dns-nsone.readthedocs.io, https://certbot-dns-ovh.readthedocs.io, https://certbot-dns-rfc2136.readthedocs.io, https://certbot-dns-route53.readthedocs.io, and https://certbot-dns-sakuracloud.readthedocs.io. Click on each link to identify the required account and/or token information.
CERTBOT_DNS_PROPAGATION_SECONDSNo30The duration in seconds for which certbot will await the DNS provider to have propagated the DNS-01 challenge text records. Adjust the value if needed, as the default value for each DNS provider might be too short, resulting in a validation error.
CERTBOT_DEPLOYMENTYestestOptions are test or production. Use test for testing purposes to avoid hitting rate limits from Let's Encrypt. In test mode, no actual certificates are installed.
HOST_PORT_HTTPYes80The host port to map the nginx web server to for HTTP traffic. The default value for HTTP traffic is port 80, which needs to be available on your host.
HOST_PORT_HTTPSYes443The host port to map the nginx web server to for secure, HTTPS traffic. The default value for HTTPS traffic is port 443, which needs to be available on your host.
NGINX_PORT_HTTPYes8080The internal port for HTTP traffic within the nginx container. The value needs to be greater than 1023, as the container runs in unprivileged (non-root) mode.
NGINX_PORT_HTTPSYes4430The internal port for HTTPS traffic within the nginx container. The value needs to be greater than 1023, as the container runs in unprivileged (non-root) mode.

Step 3 - Specify DNS Credentials

Pending on your selected DNS provider, you will need to specify the API token and/or account credentials to connect with the DNS provider for the automated DNS-01 challenge. You can either specify the credentials as environment variables or as Docker secrets. Docker secrets are a bit more secure and are more suitable for a production environment. Please check the documentation of your DNS provider in the Prerequisites section.

Option 3a - Using Environment Variables

Following the recommended https://certbot-dns-cloudflare.readthedocs.io configuration, you will need to add an API token dns_cloudflare_api_token. Add the following line to docker-compose.yml:

yml
[...]
services:
    certbot:
        [...]
        environment:
            - dns_cloudflare_api_token=${dns_cloudflare_api_token}

Now add the token to your .env file, replacing the token with the real value:

[...]
dns_cloudflare_api_token=0123456789abcdef0123456789abcdef01234567

Option 3b - Using Docker Secrets

As Docker Compose does not support external Swarm secrets, we will create local secret files for testing purposes. The credentials are stored as plain text, so this is not recommended for production. Add the secret to docker-compose.yml first, and authorize the certbot service.

yml
version: "3"

secrets:
    dns_cloudflare_api_token:
        file: secrets/dns_cloudflare_api_token

[...]

services:
    certbot:
        [...]
        secrets:
            - dns_cloudflare_api_token

Now create the file-based secret:

console
mkdir secrets
printf 0123456789abcdef0123456789abcdef01234567 > secrets/dns_cloudflare_api_token

Step 4 - Run Docker Containers

Test the Docker containers with the below commands. Be sure to have set the value of CERTBOT_DEPLOYMENT to test first.

console
docker-compose build --no-cache
docker-compose up

The images for Nginx and Certbot need to be created first, as they instruct the containers to run in unprivileged mode. Both images use the base images provided by Certbot and Nginx respectively. Certbot provides base images for each specific DNS plugin to minimize the image size. Run the containers in interactive mode with docker-compose up once the building has finished successfully. You should see several messages now. The below excerpt shows the key messages per section.

Initializing Certbot Configuration

During boot, the custom Certbot container initializes the environment variables and Docker secrets, if applicable. The following environment variables need to be present and have to conform to the expected format:

  • CERTBOT_DOMAIN
  • CERTBOT_EMAIL
  • CERTBOT_DNS_PLUGIN
  • CERTBOT_DEPLOYMENT

The following environment variable is optional:

  • CERTBOT_DNS_PROPAGATION_SECONDS

Also, at least one token variable for the DNS plugin needs to be provided as either environment variable or Docker secret. Secrets that start with a prefix of the specified DNS plugin are initialized automatically. For example, dns_cloudflare_api_token is initialized if the CERTBOT_DNS_PLUGIN is set to cloudflare.

certbot_1  | Step 1 from 3: Initializing configuration

The container terminates with an exit code if variables are missing or incorrect.

Updating Certbot Configuration

Once the environment variables have been initialized successfully, the container generates a configuration file for the specified DNS plugin. This file contains the credentials to connect with the DNS provider, and as such, should be protected. The file is put in the home directory of the default (non-root) certbot user. The file has the name of the specified DNS plugin, in this case, cloudflare.

certbot_1  | Step 2 from 3: Updating certbot configuration
certbot_1  | Generating certbot configuration file ('/home/certbot/.secrets/certbot/cloudflare.ini')

Issuing Certificates

In test mode, Certbot performs a test run with the staging server of Let's Encrypt. This allows you to test the configuration without hitting rate limits.

certbot_1  | Step 3 from 3: Issuing certificate for 'example.com'
certbot_1  | Running in test mode
certbot_1  | Executing certbot
certbot_1  | Saving debug log to /var/log/certbot/letsencrypt.log
certbot_1  | Plugins selected: Authenticator dns-cloudflare, Installer None
certbot_1  | Obtaining a new certificate

The Certbot container uses a DNS-01 challenge for Let's Encrypt to validate ownership of your domain. The DNS configuration is automated using the provided credentials. By default, nginx-certbot requests the main certificate and a wildcard certificate for your domain. Two TXT records are published to your DNS server, one for the main domain and one for the wildcard domain. Certbot waits for a specific interval to allow the DNS changes to propagate. The interval is tailored for each supported DNS plugin and can be overwritten with the CERTBOT_DNS_PROPAGATION_SECONDS environment variable. In this example, the delay is set to 30 seconds.

certbot_1  | Performing the following challenges:
certbot_1  | dns-01 challenge for example.com
certbot_1  | dns-01 challenge for example.com
certbot_1  | Waiting 30 seconds for DNS changes to propagate

Certbot notifies you the dry run was successful or not. Nginx-certbot uses the following non-standard paths, at it runs in unprivileged mode:

  • /var/lib/certbot - Core folder used for signaling locking of files by Certbot.
  • /var/log/certbot - Log files of Certbot (with log rotation). nginx-certbot appends its messages to these log files too. The log files contain sensitive information, such as the DNS token.
  • /etc/certbot - The main folder containing the DNS account settings and issued certificates.
certbot_1  | Waiting for verification...
certbot_1  | Cleaning up challenges
certbot_1  | Non-standard path(s), might not work with crontab installed by your operating system package manager
certbot_1  | IMPORTANT NOTES:
certbot_1  |  - The dry run was successful.

Initializing Nginx

The custom Nginx container uses a default configuration with SSL settings recommended by the https://ssl-config.mozilla.org. Next to that, a default HTTP server is configured using a template (see config/nginx/templates/default.conf.template). During initialization, nginx uses this template and the environment variables to generate a default HTTP server. The generated file is put at the location /etc/nginx/conf.d/default.conf.

nginx_1    | /docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
nginx_1    | /docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
nginx_1    | /docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
nginx_1    | 10-listen-on-ipv6-by-default.sh: Getting the checksum of /etc/nginx/conf.d/default.conf
nginx_1    | 10-listen-on-ipv6-by-default.sh: Enabled listen on IPv6 in /etc/nginx/conf.d/default.conf
nginx_1    | /docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
nginx_1    | 20-envsubst-on-templates.sh: Running envsubst on /etc/nginx/templates/default.conf.template to /etc/nginx/conf.d/default.conf
nginx_1    | /docker-entrypoint.sh: Configuration complete; ready for start up

Installing Certificates

During testing, no actual certificates are installed. Nginx waits for the files fullchain.pem and privkey.pem to become available in the certificates folder, e.g. /etc/letsencrypt/live/example.com/. The files are polled every 30 seconds until they are available.

nginx_1    | /docker-entrypoint.sh: Waiting for certificates ('/etc/letsencrypt/live/example.com')

Cancel execution of the containers with ctrl-c to proceed to the production configuration.

Deployment

The steps for deploying in production are slightly different than for local testing. The next four steps highlight the changes.

Step 1 - Clone the Repository

Unchanged

Step 2 - Update the Environment Variables

Unchanged, however, set CERTBOT_DEPLOYMENT to production once everything is working properly

Step 3 - Specify DNS Credentials

Option 3a - Using Environment Variables

Unchanged

Option 3b - Using Docker Secrets

Instead of file-based secrets, you will now create more secure secrets. Docker secrets can be easily created using pipes. Do not forget to include the final -, as this instructs Docker to use piped input. Update the token as needed.

console
printf 0123456789abcdef0123456789abcdef01234567 | docker secret create dns_cloudflare_api_token -

If you do not feel comfortable copying secrets from your command line, you can use the wrapper create_secret.sh. This script pro***s for a secret and ensures sensitive data is not displayed on your console. The script is available in the folder /docker-secret of your repository.

console
./create_secret.sh dns_cloudflare_api_token

Set external to true in the secrets section of docker-compose.yml to use Docker secrets instead of local files.

Dockerfile
[...]
secrets:
    dns_cloudflare_api_token:
        external: true

Step 4 - Run Docker Service

Pending your choice to use environment variables or Docker secrets, you can deploy your service using Docker Compose or Stack Deploy.

Option 4a - Using Environment Variables

Unchanged, however, use docker-compose up -d to run the containers in the background

Option 4b - Using Docker Secrets

Docker Swarm is needed to support external Docker secrets. As such, the services will be deployed as part of a Docker Stack in production. Deploy the stack using docker-compose as input. This ensures the environment variables are parsed correctly.

console
docker-compose config | docker stack deploy -c - nginx-certbot

Run the following command to inspect the status of the Docker Stack.

console
docker stack services nginx-certbot

You should see the value 1/1 for REPLICAS for the certbot and nginx services if the stack was initialized correctly. It might take a while before the services are up and running, so simply repeat the command after a few minutes if needed.

ID  NAME                   MODE        REPLICAS  IMAGE                                PORTS
*** nginx-certbot_certbot  replicated  1/1       markdumay/certbot-cloudflare:latest  
*** nginx-certbot_nginx    replicated  1/1       markdumay/nginx-unprivileged:latest  *:443->4430/tcp, *:80->8080/tcp

You can view the service logs with docker service logs nginx-certbot_certbot or docker service logs nginx-certbot_nginx once the services are up and running. Refer to the paragraph Step 4 - Run with Docker Compose for validation of the logs.

Debugging swarm services can be quite tedious. If for some reason your service does not initiate properly, you can get its task ID with docker service ps nginx-certbot_certbot or docker service ps nginx-certbot_nginx. Running docker inspect <task-id> might give you some clues to what is happening. Use docker stack rm nginx-certbot to remove the docker stack entirely.

Usage

Testing Basic Functionality

Having followed the steps in this guide, you should have a default HTTP server running on port 80 of your host by now. Test the availability with the following command from your host. Replace the port if needed to reflect the configuration in your .env file. If all goes well, the web server should return a page based on config/nginx/index.html.

curl localhost

In case of errors, test if the web server is available from within the nginx container. Run the following command from your host, updating the internal port 8080 if needed.

docker exec -it nginx-certbot_nginx curl localhost:8080

Configuring a Secure Web Server

Add support for an encrypted server once the basic web server is up and running. Create a new file nginx/templates/example.com.conf.template, renaming example.com to your domain. Below configuration redirects all HTTP traffic to HTTPS, and redirects www.example.com to example.com. Restart the Docker services/stack to initialize the new server.

# Redirect all non-encrypted to encrypted traffic
server {
    server_name ${CERTBOT_DOMAIN};
    listen ${NGINX_PORT_HTTP};
    listen [::]:${NGINX_PORT_HTTP};

    location / {
        return 301 https://$server_name$request_uri;
    }
}

# Redirect all www to non-www
server {
    server_name www.${CERTBOT_DOMAIN};
    listen ${NGINX_PORT_HTTP};
    listen [::]:${NGINX_PORT_HTTP};
    listen ${NGINX_PORT_HTTPS} ssl http2;
    listen [::]:${NGINX_PORT_HTTPS} ssl http2;

    # Configure certificate and session
    ssl_certificate /etc/certbot/live/${CERTBOT_DOMAIN}/fullchain.pem;
    ssl_certificate_key /etc/certbot/live/${CERTBOT_DOMAIN}/privkey.pem;

    return 301 https://${CERTBOT_DOMAIN}$request_uri;
}

# Handle HTTPS requests
server {
    server_name ${CERTBOT_DOMAIN};
    listen ${NGINX_PORT_HTTPS} ssl http2;
    listen [::]:${NGINX_PORT_HTTPS} ssl http2;

    # Configure certificate and session
    ssl_certificate /etc/certbot/live/${CERTBOT_DOMAIN}/fullchain.pem;
    ssl_certificate_key /etc/certbot/live/${CERTBOT_DOMAIN}/privkey.pem;

	# Add index.php to the list if you are using PHP
	root /var/www/html;
	index index.html index.htm;

	location / {
		# First attempt to serve request as file, then
		# as directory, then fall back to displaying a 404.
		try_files $uri $uri/ =404;
	}
}

Testing the secure web server requires you have either configured your DNS server or adjusted your local host database. The DNS server requires two A type records for the names www and example.com that point to your hosts' IP address. The local host database can be found at /etc/hosts on most Linux and macOS systems. Add the following entry:

127.0.0.1       www.example.com example.com

Renewing Certificates

The custom Certbot service validates the installed certificates every 12 hours (see config/certbot/docker_entrypoint.sh). The certificate itself is renewed every 60 days. Nginx is reloaded every 6 hours to pick up any renewed certificates automatically (see config/nginx/docker_entrypoint.sh).

Contributing

  1. Clone the repository and create a new branch
    console
    git checkout https://github.com/markdumay/nginx-certbot.git -b name_for_new_branch
    
  2. Make and test the changes
  3. Submit a Pull Request with a comprehensive description of the changes

Credits

Nginx-certbot is inspired by the following blog article:

  • MikesBytes - Hosting a site with docker + nginx + certbot + wildcard certs

Donate

License

https://github.com/markdumay/nginx-certbot/blob/master/LICENSE

Copyright © https://github.com/markdumay

镜像拉取方式

您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。

轩辕镜像加速拉取命令点我查看更多 certbot-route53 镜像标签

docker pull docker.xuanyuan.run/markdumay/certbot-route53:<标签>

使用方法:

  • 登录认证方式
  • 免认证方式

DockerHub 原生拉取命令

docker pull markdumay/certbot-route53:<标签>

轩辕镜像配置手册

按平台快速找到配置文档

一键安装

一键安装 Docker

Linux Docker 一键安装

AI

用 AI 使用轩辕镜像

agents.md · AI 对话 · 提示词

Docker

登录仓库拉取

登录认证 · 私有仓库

专属域名拉取

免登录 · 高速拉取

Linux

Docker 镜像配置

Windows / Mac

Docker Desktop 配置

MacOS OrbStack

OrbStack 容器

Apple Container

macOS 原生容器

Docker Compose

Compose 项目配置

NAS

群晖

Synology 配置

飞牛

fnOS 镜像配置

绿联

绿联 NAS

威联通

QNAP 配置

极空间

极空间 NAS

Unraid

Unraid NAS

企业仓库

其他仓库

ghcr · Quay · nvcr

Harbor 镜像源

Proxy Repository 对接

Portainer 镜像源

Registries 配置

Nexus 镜像源

Docker Proxy 缓存

开发工具

Dev Containers

VS Code 开发容器

Podman

Podman 配置指南

Singularity / Apptainer

HPC 科学计算容器

Kubernetes

K8s Containerd

Kubernetes · Containerd

K3s

轻量级集群

面板 / 网络

爱快路由

iKuai 镜像加速

宝塔面板

一键配置镜像源

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

功能

版本功能对比

功能对比 · 版本选择

支持的镜像仓库

Docker Hub · GCR · GHCR

新手拉取配置

登录 · 专属域名 · 配置

docker search 限制

专属域名 · Hub 搜索

不支持 push

仅支持 pull · 不支持

拉取速度原因

带宽 · 缓存 · 冷热镜像

错误码

402 与流量用尽

402 · 流量包 · 充值

401 认证失败

401 · docker login

manifest unknown

标签错误 · 镜像不存在

410 Gone 排查

410 · Docker 升级

429 限流

免费版 · 专业版 · 企业版 · 请求频率

其他报错

DNS 超时

DNS 解析 · 网络超时

TLS 证书失败

no matching manifest(架构)

账号

失败是否计费

manifest · blob · 计费

申请开发票(企业 / 个人)

企业 · 个人 · 工单

修改登录密码

网站 · 仓库 · 重置

注销账户

工单 · 数据 · 注销

原理

mirrors 不生效

daemon.json · 重启

去掉域名前缀

docker tag · 重命名

指定架构拉取

ARM64 · AMD64 · 多架构

latest 与「最新」

digest · 版本号 · 标签

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

用户头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
markdumay/certbot-route53
定价查看流量套餐与价格
博客Docker 镜像公告与技术博客
专业版 · 高速稳定拉取镜像
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
50GB 仅 ¥7/年
专业版 · 高速稳定拉取镜像
50GB 仅 ¥7/年
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
用户协议·隐私政策·增值电信业务经营许可证:浙B2-20261007·©2024-2026 源码跳动©2024-2026 杭州源码跳动科技有限公司·商务合作:点击复制邮箱

更多 certbot-route53 镜像推荐

ntcnvisia/certbot-route53 logo

ntcnvisia/certbot-route53

ntcnvisia
该Docker镜像通过AWS Route53 DNS挑战自动获取或续期Let's Encrypt SSL证书,简化使用Route53服务的域名证书管理流程。
3 次收藏1万+ 次下载
7 年前更新
sappho/certbot-route53 logo

sappho/certbot-route53

sappho
暂无描述
974 次下载
8 年前更新
tkykm/certbot-route53 logo

tkykm/certbot-route53

tkykm
本Docker镜像通过AWS Route53的DNS-01验证方式,自动获取和续期Let's Encrypt SSL证书,适用于使用Route53管理域名的用户,支持通配符证书。
2 次收藏762 次下载
8 年前更新
wildscamp/certbot-route53 logo

wildscamp/certbot-route53

wildscamp
一个简化针对Amazon Route53 DNS生成Let's Encrypt证书的容器,用于本地开发环境的证书创建与续期管理。
808 次下载
5 年前更新
danihodovic/certbot-route53 logo

danihodovic/certbot-route53

danihodovic
暂无描述
650 次下载
8 年前更新
markcallen/certbot-route53 logo

markcallen/certbot-route53

markcallen
暂无描述
613 次下载
9 年前更新

查看更多 certbot-route53 相关镜像