adding omg.lol DNS API

master
as-kholin 2024-09-23 22:11:20 -05:00
parent 3bf4d4e450
commit 365dd75a76
1 changed files with 21 additions and 0 deletions

@ -91,6 +91,7 @@
- [167. Use Yandex 360 for Business DNS API](#dns_yandex360)
- [168. Use HE DNS DDNS API](#dns_he_ddns)
- [169. Using the IONOS Cloud DNS API](#dns_ionos_cloud)
- [170. Use omg.lol](#dns_omglol)
- [Use custom API](#dns_myapi)
- [Use lexicon DNS API](#dns_lexicon)
@ -2313,6 +2314,26 @@ Then, you can issue a certificate by executing:
Please report any bugs or issues [here](https://github.com/acmesh-official/acme.sh/issues/5243)
<a name="dns_omglol"/>
1. Collect your API Key
- Navigate to [https://home.omg.lol/account](https://home.omg.lol/account)
- Log in (if not already logged in)
- Scroll all the way to the bottom
- click the clipboard to copy your API key
2. Export the following variables:
```
export omglol_apikey="your_api_key" # as collected from your accounts page
export omglol_address="your_omg.lol_address" # Leading '@' not required
```
3. Use the `acme.sh` command with the `--dns dns_omglol` parameter to issue your certificate. For example:
```
./acme.sh --issue --dns dns_omglol --dnssleep 120 -d address.omg.lol -d *.address.omg.lol
```
Please report any bugs or issues [here](https://github.com/acmesh-official/acme.sh/issues/5299)
<a name="dns_myapi"/>