Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adferrand/dnsrobocert
Orchestrate Certbot and Lexicon together to provide Let's Encrypt TLS certificates validated by DNS challenges
https://github.com/adferrand/dnsrobocert
certbot dns dns-challenge docker letsencrypt lexicon ssl ssl-certificate
Last synced: 1 day ago
JSON representation
Orchestrate Certbot and Lexicon together to provide Let's Encrypt TLS certificates validated by DNS challenges
- Host: GitHub
- URL: https://github.com/adferrand/dnsrobocert
- Owner: adferrand
- License: mit
- Created: 2017-06-15T20:19:05.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-11-25T01:01:27.000Z (18 days ago)
- Last Synced: 2024-11-27T18:07:30.482Z (16 days ago)
- Topics: certbot, dns, dns-challenge, docker, letsencrypt, lexicon, ssl, ssl-certificate
- Language: Python
- Homepage: https://dnsrobocert.readthedocs.io
- Size: 1.78 MB
- Stars: 553
- Watchers: 13
- Forks: 89
- Open Issues: 47
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - adferrand/dnsrobocert - Orchestrate Certbot and Lexicon together to provide Let's Encrypt TLS certificates validated by DNS challenges (docker)
README
======
|logo|
======|version| |python_support| |docker| |ci| |coverage|
.. |logo| image:: https://adferrand.github.io/dnsrobocert/images/dnsrobocert.svg
:alt: DNSroboCert
.. |version| image:: https://img.shields.io/pypi/v/dnsrobocert
:target: https://pypi.org/project/dnsrobocert/
.. |python_support| image:: https://img.shields.io/pypi/pyversions/dnsrobocert
:target: https://pypi.org/project/dnsrobocert/
.. |docker| image:: https://img.shields.io/docker/pulls/adferrand/dnsrobocert
:target: https://hub.docker.com/r/adferrand/dnsrobocert
.. |ci| image:: https://img.shields.io/github/actions/workflow/status/adferrand/dnsrobocert/main.yml?branch=master
:target: https://github.com/adferrand/dnsrobocert/actions/workflows/main.yml
.. |coverage| image:: https://img.shields.io/codecov/c/github/adferrand/dnsrobocert/master
:target: https://app.codecov.io/gh/adferrand/dnsrobocert/branch/master.. tag:intro-begin
.. contents:: Table of Contents
:local:Features
========DNSroboCert is designed to manage `Let's Encrypt`_ SSL certificates based on `DNS challenges`_.
* Let's Encrypt wildcard and regular certificates generation by Certbot_ using DNS challenges,
* Integrated automated renewal of almost expired certificates,
* Standardized API through Lexicon_ library to insert the DNS challenge with various DNS providers,
* Centralized YAML configuration file to maintain several certificates and several DNS providers
with configuration validity control,
* Modification of container configuration without restart,
* Flexible hooks upon certificate creation/renewal including containers restart, commands in containers
or custom hooks,
* Support for `DNS alias mode`_ (see the ``follow_cnames`` option in the `certificate section`_),
* Linux, Mac OS X and Windows support, with a particular care for Docker services,
* Delivered as a standalone application and a Docker image... _DNS alias mode: https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode
.. _certificate section: https://dnsrobocert.readthedocs.io/en/latest/configuration_reference.html#certificate-propertiesWhy use DNSroboCert
===================If you are reading these lines, you certainly want to secure all your services using Let's Encrypt SSL
certificates, which are free and accepted everywhere.If you want to secure Web services through HTTPS, there is already plenty of great tools. In the Docker
world, one can check Traefik_, or nginx-proxy_ + letsencrypt-nginx-proxy-companion_. Basically, theses tools
will allow automated and dynamic generation/renewal of SSL certificates, based on TLS or HTTP challenges,
on top of a reverse proxy to encrypt everything through HTTPS.So far so good, but you may fall in one of the following categories:
1. You are in a firewalled network, and your HTTP/80 and HTTPS/443 ports are not opened to the outside world.
2. You want to secure non-Web services (like LDAP, IMAP, POP, etc.) were the HTTPS protocol is of no use.
3. You want to generate a wildcard certificate, valid for any sub-domain of a given domain.For the first case, ACME servers need to be able to access your website through HTTP (for HTTP challenges)
or HTTPS (for TLS challenges) in order to validate the certificate. With a firewall these two challenges -
which are widely used in HTTP proxy approaches - will not be usable: you need to ask a DNS challenge.
Please note that traefik embed DNS challenges, but only for few DNS providers.For the second case, there is no website to use TLS or HTTP challenges, and you should ask a DNS challenge.
Of course you could create a "fake" website to validate the domain using a HTTP challenge, and reuse the
certificate on the "real" service. But it is a workaround, and you have to implement a logic to propagate
the certificate, including during its renewal. Indeed, most of the non-Web services will need to be
restarted each time the certificate is renewed.For the last case, the use of a DNS challenge is mandatory. Then the problems concerning certificates
propagation that have been discussed in the second case will also occur.The solution is a dedicated and specialized tool which handles the creation/renewal of Let's Encrypt
certificates, and ensure their propagation in the relevant services. It is the purpose of
this project... _Let's Encrypt: https://letsencrypt.org/
.. _DNS challenges: https://tools.ietf.org/html/draft-ietf-acme-acme-01#page-44
.. _Certbot: https://github.com/certbot/certbot
.. _Lexicon: https://github.com/AnalogJ/lexicon
.. _Traefik: https://hub.docker.com/_/traefik/
.. _nginx-proxy: https://hub.docker.com/r/jwilder/nginx-proxy/
.. _letsencrypt-nginx-proxy-companion: https://hub.docker.com/r/jrcs/letsencrypt-nginx-proxy-companion/.. tag:intro-end
Documentation
=============Online documentation (user guide, configuration reference) is available in the `DNSroboCert documentation`_.
For a quick start, please have a look in particular at the `User guide`_ and the `Lexicon provider configuration`_.
Support
=======Do not hesitate to join the `DNSroboCert community on Github Discussions`_ if you need help to use or develop DNSroboCert!
Contributing
============If you want to help in the DNSroboCert development, you are welcome!
Please have a look at the `Developer guide`_ page to know how to start... _DNSroboCert documentation: https://dnsrobocert.readthedocs.io
.. _User guide: https://dnsrobocert.readthedocs.io/en/latest/user_guide.html
.. _Lexicon provider configuration: https://dnsrobocert.readthedocs.io/en/latest/providers_options.html
.. _Developer guide: https://dnsrobocert.readthedocs.io/en/latest/developer_guide.html
.. _DNSroboCert community on Github Discussions: https://github.com/adferrand/dnsrobocert/discussions