Updated dnsapi2 (markdown)

master
laraveluser 2023-08-25 21:20:31 +02:00
parent 5a3140c440
commit f0d133a12e
1 changed files with 21 additions and 0 deletions

@ -80,6 +80,7 @@
- [156. Use Nanelo DNS API](#dns_nanelo) - [156. Use Nanelo DNS API](#dns_nanelo)
- [157. Use Google Domains DNS API](#dns_googledomains) - [157. Use Google Domains DNS API](#dns_googledomains)
- [158. Use DNSExit API](#dns_dnsexit) - [158. Use DNSExit API](#dns_dnsexit)
- [159. Use Lima-City (Trafficplex)](#dns_limacity)
- [Use custom API](#dns_myapi) - [Use custom API](#dns_myapi)
- [Use lexicon DNS API](#dns_lexicon) - [Use lexicon DNS API](#dns_lexicon)
@ -2000,6 +2001,26 @@ The login variables will be saved in `~/.acme.sh/account.conf` and will be reuse
Report any bugs or issues [here](https://github.com/acmesh-official/acme.sh/issues/4719). Report any bugs or issues [here](https://github.com/acmesh-official/acme.sh/issues/4719).
<a name="dns_dnsexit"/>
## 159. Use Lima-City API to automatically issue cert
You'll need an API key for your Lima-City account which you can find under Account Section in your User control panel.
```sh
export LIMACITY_APIKEY="<Your API key>"
```
To issue a cert, run the following:
```sh
./acme.sh --issue --dns dns_limacity -d example.com -d *.example.com
```
The login variables will be saved in `~/.acme.sh/account.conf` and will be reused when needed.
Report any bugs or issues [here](https://github.com/acmesh-official/acme.sh/issues/4758).
<a name="dns_myapi"/> <a name="dns_myapi"/>