This is plugin for Certbot. It uses Websupport REST API v2 to complete dns-01 challenge.
- Install this plugin using
pip install certbot-dns-websupport-v2
- Generate Standard API access Identificator and Secret Key on your account page
- Get service ID from URL of your service. After clicking your service you can find SERVICE_ID in your browser URL:
https://admin.websupport.sk/sk/dashboard/service/SERVICE ID
- Create config file
websupport.ini
with following content, replace APIKEY, SECRET and SERVICE_ID with your values.dns_websupport_v2_api_key = "APIKEY" dns_websupport_v2_secret = "SECRET" dns_websupport_v2_service = "SERVICE_ID"
- For security reasons make file readable only by you.
chmod 600 websupport.ini
- Run certbot to generate certificates
certbot certonly certonly --dns-websupport-v2-credentials ./websupport.ini -d *.YOUR_DOMAIN.sk --authenticator dns-websupport-v2