Browse Source

Added dnsapi support for IBM Bluemix (formerly SoftLayer)

pull/761/head
Luiz Gustavo Nascimento 8 years ago
parent
commit
531a4f1797
  1. 1
      README.md
  2. 1
      dnsapi/README.md
  3. 2
      dnsapi/dns_bluemix.sh

1
README.md

@ -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

1
dnsapi/README.md

@ -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.

2
dnsapi/dns_bluemix.sh

@ -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"

Loading…
Cancel
Save