Added dnsapi support for IBM Bluemix (formerly SoftLayer)

This commit is contained in:
Luiz Gustavo Nascimento 2017-05-17 20:52:36 +00:00
parent bf82eafc13
commit 531a4f1797
3 changed files with 2 additions and 2 deletions

View File

@ -334,7 +334,6 @@ You don't have to do anything manually!
1. IBM Bluemix API (formerly SoftLayer) 1. IBM Bluemix API (formerly SoftLayer)
And: And:
1. lexicon DNS API: https://github.com/Neilpang/acme.sh/wiki/How-to-use-lexicon-dns-api 1. lexicon DNS API: https://github.com/Neilpang/acme.sh/wiki/How-to-use-lexicon-dns-api

View File

@ -519,6 +519,7 @@ Ok, let's issue a cert now:
acme.sh --issue --dns dns_bluemix -d example.com -d www.example.com acme.sh --issue --dns dns_bluemix -d example.com -d www.example.com
``` ```
# Use custom API # Use custom API
If your API is not supported yet, you can write your own DNS API. If your API is not supported yet, you can write your own DNS API.

View File

@ -6,7 +6,7 @@
# Based on sample from Neilpang # Based on sample from Neilpang
# Report Bugs here: https://github.com/luizgn/acme.sh # Report Bugs here: https://github.com/luizgn/acme.sh
# #
######## Public functions ##################### #################### Public functions ##################################
BLUEMIX_API_URL="https://${BLUEMIX_USER}:${BLUEMIX_KEY}@api.softlayer.com/rest/v3" BLUEMIX_API_URL="https://${BLUEMIX_USER}:${BLUEMIX_KEY}@api.softlayer.com/rest/v3"