Go to file
Markus Pawlata 476530bd4f - compatible with python3.6
- adapted to allow for wildcard-certs
- adapted to allow for more than one Order per domain
2019-02-24 01:38:31 +01:00
certbot_plugin_gandi - compatible with python3.6 2019-02-24 01:38:31 +01:00
dev Update readme.md 2018-03-15 17:24:48 +00:00
.gitignore Add example plugin from certbot source, and notes for running with certbot docker container 2018-03-12 16:22:04 +00:00
LICENSE - compatible with python3.6 2019-02-24 01:38:31 +01:00
readme.md Update readme.md 2018-03-15 17:53:04 +00:00
setup.py Move plugin up a level for easy pip install via git 2018-03-15 15:19:54 +00:00

readme.md

Certbot plugin for authentication using Gandi LiveDNS

This is a plugin for Certbot that uses the Gandi LiveDNS API to allow Gandi customers to prove control of a domain name.

  1. Obtain a Gandi API token (see Gandi LiveDNS API)

  2. Install the plugin:

    pip install 'git+https://gitlab.com/cspublic/certbot-plugin-gandi.git'
    
  3. Create a gandi.ini config file with the following contents:

    certbot_plugin_gandi:dns_api_key=APIKEY
    

    Replace APIKEY with your Gandi API key and ensure permissions are set to disallow access to other users.

  4. Run certbot and direct it to use the plugin for authentication and to use the config file created in (3):

    certbot certonly -a certbot-plugin-gandi:dns --certbot-plugin-gandi:dns-credentials gandi.ini -d domain.com
    

    Add additional options as required to specify an installation plugin etc.