Open
Conversation
- Add `dnsapi/dns_api.sh`: Core DNS API framework for DNS-01 challenge automation, providing a standardized interface and utilities for DNS provider plugins. - Add `dnsapi/dns_cloudflare.sh`: Cloudflare DNS API provider supporting automated DNS-01 challenge record management via API token or global key. - Add `dnsapi/dns_manual.sh`: Manual DNS provider for interactive, non-automated DNS-01 challenge setup and cleanup. These scripts enable modular, extensible DNS-01 challenge support for ACME certificate issuance.
…l management, provide example `renew.cfg` file
… DNS-01 challenges
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a significant enhancement to the
w2c-letsencrypt-esxiby adding support for DNS-01 challenges. Included with it are improved configuration options, a modular approach to supporting DNS providers viadnsapi/dns_api.sh, and an initial integration with Cloudflare's DNS API throughdnsapi/dns_cloudflare.sh. These changes enhance flexibility, particularly for environments where HTTP-01 challenges are not feasible, and improve the overall usability of the project.Enhancements to ACME Challenge Support:
acme_tiny.pyfor handling DNS-01 challenges and interacting with DNS APIs.Cloudflare DNS API Integration:
dnsapi/dns_cloudflare.sh, a new script for managing DNS records via Cloudflare's API. This script supports adding and removing TXT records for DNS-01 challenges and includes robust error handling and logging.Improvements to Configuration:
README.mdto provide detailed instructions for configuring both HTTP-01 and DNS-01 challenges, including examples for using Cloudflare or manual DNS record management.renew.cfg.examplefile to serve as a template for customizing renewal settings.Build Script Updates:
build/create_vib.shensures the newdnsapi/dns_api.shscript and any available DNS provider handler scripts are included in the VIB package.