https://github.com/mwt/certbot-dns-bunny
Certbot plugin to obtain letsencrypt certificates for users of bunny.net DNS
https://github.com/mwt/certbot-dns-bunny
acme acme-client bunnycdn bunnydns certbot certbot-dns-authenticator certbot-plugin certificate dns-01-challange letsencrypt python
Last synced: 6 months ago
JSON representation
Certbot plugin to obtain letsencrypt certificates for users of bunny.net DNS
- Host: GitHub
- URL: https://github.com/mwt/certbot-dns-bunny
- Owner: mwt
- License: bsd-2-clause
- Created: 2022-08-09T15:30:45.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-26T14:44:28.000Z (about 1 year ago)
- Last Synced: 2025-03-08T22:46:21.949Z (7 months ago)
- Topics: acme, acme-client, bunnycdn, bunnydns, certbot, certbot-dns-authenticator, certbot-plugin, certificate, dns-01-challange, letsencrypt, python
- Language: Python
- Homepage: https://pypi.org/project/certbot-dns-bunny/
- Size: 40 KB
- Stars: 30
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
Bunny.net DNS Authenticator Plugin for Certbot
==============================================.. image:: https://img.shields.io/github/license/mwt/certbot-dns-bunny?style=for-the-badge
:alt: License Badge
:target: LICENSE.. image:: https://img.shields.io/pypi/v/certbot-dns-bunny?style=for-the-badge
:alt: PyPI Version Badge
:target: https://pypi.org/project/certbot-dns-bunny/.. image:: https://img.shields.io/pypi/pyversions/certbot-dns-bunny?style=for-the-badge
:alt: Supported Python Versions Badge
:target: https://pypi.org/project/certbot-dns-bunny/.. image:: https://readthedocs.org/projects/certbot-dns-bunny/badge/?version=latest&style=for-the-badge
:alt: Documentation Badge
:target: https://certbot-dns-bunny.readthedocs.io/en/latest/.. image:: https://flat.badgen.net/snapcraft/v/certbot-dns-bunny/?scale=1.4
:alt: Snap Store Badge
:target: https://snapcraft.io/certbot-dns-bunnyThis plugin enables DNS verification with certbot when using `Bunny.net`_ DNS. Full documentation is on `Read the Docs`_.
.. _Bunny.net: https://bunny.net?ref=e174a06f0l
.. _Read the Docs: https://certbot-dns-bunny.readthedocs.io/en/latest/Installation
------------This package can be installed with pip
.. code:: bash
pip install certbot-dns-bunny
and can be upgraded using the ``--upgrade`` flag
.. code:: bash
pip install --upgrade certbot-dns-bunny
If you installed certbot as a snap, then you have to install this plugin as a snap as well.
.. code:: bash
snap install certbot-dns-bunny
snap connect certbot:plugin certbot-dns-bunnyCredentials
-----------.. code:: ini
:name: certbot_bunny_token.ini# Bunny API token used by Certbot
dns_bunny_api_key = a65e8ebd-45ab-44d2-a542-40d4d009e3bfExamples
--------.. code:: bash
certbot certonly \
--authenticator dns-bunny \
--dns-bunny-credentials ~/.secrets/certbot/bunny.ini \
-d example.com.. code:: bash
certbot certonly \
--authenticator dns-bunny \
--dns-bunny-credentials ~/.secrets/certbot/bunny.ini \
-d example.com \
-d www.example.com.. code:: bash
certbot certonly \
--authenticator dns-bunny \
--dns-bunny-credentials ~/.secrets/certbot/bunny.ini \
--dns-bunny-propagation-seconds 60 \
-d example.com